Skip to content

Commit d76744a

Browse files
isaacsbcoe
authored andcommittedMay 8, 2018
chore: update all the things (#832)
1 parent 5e40c7c commit d76744a

File tree

6 files changed

+8861
-18
lines changed

6 files changed

+8861
-18
lines changed
 

‎.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,3 @@ test/build/
66
*.covered.js
77
*.swp
88
needs-transpile.js
9-
package-lock.json

‎.npmrc

-1
This file was deleted.

‎appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ environment:
55
install:
66
- ps: Install-Product node $env:nodejs_version
77
- npm cache clear
8-
- npm i npm@latest -g
8+
- npm i npm@5 -g
99
- set PATH=%APPDATA%\npm;%PATH%
1010
- set CI=true
1111
- npm config set progress=false

‎package-lock.json

+8,845
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+13-13
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,11 @@
9090
"istanbul-lib-source-maps": "^1.2.3",
9191
"istanbul-reports": "^1.4.0",
9292
"md5-hex": "^1.2.0",
93-
"merge-source-map": "^1.0.2",
94-
"micromatch": "^2.3.11",
93+
"merge-source-map": "^1.1.0",
94+
"micromatch": "^3.1.10",
9595
"mkdirp": "^0.5.0",
9696
"resolve-from": "^2.0.0",
97-
"rimraf": "^2.5.4",
97+
"rimraf": "^2.6.2",
9898
"signal-exit": "^3.0.1",
9999
"spawn-wrap": "^1.4.2",
100100
"test-exclude": "^4.2.0",
@@ -105,22 +105,22 @@
105105
"any-path": "^1.3.0",
106106
"bundle-dependencies": "^1.0.2",
107107
"chai": "^3.0.0",
108-
"coveralls": "^2.11.11",
108+
"coveralls": "^3.0.1",
109109
"exists-sync": "0.0.4",
110110
"forking-tap": "^0.1.1",
111-
"is-windows": "^1.0.0",
112-
"lodash": "^4.12.0",
113-
"mocha": "^3.2.0",
111+
"is-windows": "^1.0.2",
112+
"lodash": "^4.17.10",
113+
"mocha": "^5.1.1",
114114
"newline-regex": "^0.2.1",
115-
"requirejs": "^2.3.0",
115+
"requirejs": "^2.3.5",
116116
"sanitize-filename": "^1.5.3",
117-
"sinon": "^2.1.0",
118-
"source-map-support": "^0.4.6",
117+
"sinon": "^2.4.1",
118+
"source-map-support": "^0.5.5",
119119
"standard": "^9.0.2",
120-
"standard-version": "^4.0.0",
120+
"standard-version": "^4.3.0",
121121
"strip-indent": "^2.0.0",
122-
"tap": "^10.0.0",
123-
"which": "^1.2.11",
122+
"tap": "^11.1.4",
123+
"which": "^1.3.0",
124124
"zero-fill": "^2.2.3"
125125
},
126126
"repository": {

‎test/fixtures/cache-collision-runner.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ var workerPath = path.join(__dirname, './cache-collision-worker.js')
1111

1212
function doFork (message) {
1313
spawn(process.execPath, [workerPath, String(time[0]), String(time[1]), message])
14-
.on('close', function (err) {
15-
assert.ifError(err)
14+
.on('close', function (code) {
15+
assert.equal(code, 0, 'received non-zero exit code ' + code)
1616
})
1717
}
1818

0 commit comments

Comments
 (0)
Please sign in to comment.