Skip to content

Commit 4a43cfe

Browse files
authored
Merge pull request #22 from power-assert-js/espower-source@2.0
chore(pacakge): upgrade espower-source@2.0
2 parents 0c12cc8 + 8d3ac0d commit 4a43cfe

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"react": "^15.3.2"
3030
},
3131
"dependencies": {
32-
"espower-source": "^1.1.0",
32+
"espower-source": "^2.0.0",
3333
"minimatch": "^3.0.3",
3434
"typescript": "~2.0.3",
3535
"typescript-simple": "^6.0.1"

test/demo-es6-import.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import hello from './lib/hello';
22

3-
let assert = require('power-assert');
3+
let assert = require('assert');
44

55
class Person {
66
constructor(public name: string, public age: number) {

test/demo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
'use strict';
44

5-
let assert = require('power-assert');
5+
let assert = require('assert');
66

77
class Person {
88
constructor(public name: string, public age: number) {

test/test-outdir/test/to_be_instrumented_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
import assert = require('power-assert')
3+
import assert = require('assert')
44
import expect = require('expect.js')
55
import MyComponent from '../lib/mycomponent.tsx';
66

test/to_be_instrumented_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
import assert = require('power-assert')
3+
import assert = require('assert')
44
import expect = require('expect.js')
55
import MyComponent from './lib/mycomponent.tsx';
66

0 commit comments

Comments
 (0)