8000 Dependencies update #2 · sec-js/javascript-obfuscator@3d1e17f · GitHub
[go: up one dir, main page]

Skip to content

Commit 3d1e17f

Browse files
author
sanex3339
committed
Dependencies update #2
1 parent 3e93c35 commit 3d1e17f

File tree

6 files changed

+607
-331
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.awcache
22
.DS_Store
33
.idea
4+
.nyc_output
45
npm-debug.log
56
*.js.map
67
/coverage

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.awcache
22
.github
33
.idea
4+
.nyc_output
45
coverage
56
images
67
test/fixtures/compile-performance.js

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@
5858
"awesome-typescript-loader": "5.2.1",
5959
"chai": "4.2.0",
6060
"coveralls": "3.0.9",
61-
"istanbul": "1.1.0-alpha.1",
6261
"mocha": "6.2.2",
62+
"nyc": "^15.0.0",
6363
"pjson": "1.0.9",
6464
"pre-commit": "1.2.2",
6565
"rimraf": "3.0.0",

scripts/test-coveralls

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

33
yarn run test:removeTmpDir &&
44
yarn run test:compile &&
5-
$(yarn bin)/istanbul cover $(yarn bin)/_mocha -- test-tmp/test/index.spec.js --report lcovonly &&
5+
$(yarn bin)/nyc --reporter lcovonly $(yarn bin)/mocha -- test-tmp/test/index.spec.js &&
66
cat ./coverage/lcov.info | $(yarn bin)/coveralls &&
77
yarn run test:removeTmpDir

scripts/test-full

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
yarn run test:removeTmpDir &&
44
yarn run test:compile &&
55
node test-tmp/test/dev/dev.js &&
6-
$(yarn bin)/istanbul cover $(yarn bin)/_mocha -- test-tmp/test/index.spec.js &&
6+
$(yarn bin)/nyc --reporter text-summary $(yarn bin)/mocha -- test-tmp/test/index.spec.js &&
77
yarn run test:removeTmpDir

0 commit comments

Comments
 (0)
0