Skip to content

Commit caaefb4

Browse files
authored
chore: upgrade deps (#809)
1 parent f95869d commit caaefb4

File tree

5 files changed

+660
-189
lines changed

5 files changed

+660
-189
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ node_js:
1010
- '6'
1111

1212
before_install:
13-
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.3.2
13+
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.5.1
1414
- export PATH=$HOME/.yarn/bin:$PATH
1515

1616
before_script:

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ cache:
1212

1313
install:
1414
- ps: Install-Product node $env:nodejs_version x64
15-
- npm install -g yarn@1.3.2
15+
- npm install -g yarn@1.5.1
1616
- set PATH=%APPDATA%\npm;%PATH%
1717
- yarn
1818

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,33 +23,33 @@
2323
"@babel/plugin-transform-block-scoping": "^7.0.0-beta.40",
2424
"@babel/preset-env": "^7.0.0-beta.40",
2525
"babel-core": "^7.0.0-bridge.0",
26-
"babel-jest": "^22.2.2",
26+
"babel-jest": "^22.4.1",
2727
"butternut": "^0.4.6",
2828
"bytes": "^3.0.0",
2929
"chalk": "^2.3.1",
3030
"cli-table": "^0.3.1",
3131
"closure-compiler": "^0.2.12",
3232
"codecov": "^3.0.0",
3333
"commander": "^2.14.1",
34-
"eslint": "^4.17.0",
34+
"eslint": "^4.18.1",
3535
"eslint-plugin-prettier": "^2.6.0",
3636
"fancy-log": "^1.3.2",
3737
"fs-readdir-recursive": "^1.1.0",
3838
"google-closure-compiler-js": "^20180204.0.0",
3939
"gulp": "github:gulpjs/gulp#4.0",
4040
"gulp-babel": "^8.0.0-beta.1",
4141
"gulp-newer": "^1.4.0",
42-
"jest-cli": "^22.3.0",
42+
"jest-cli": "^22.4.2",
4343
"lerna": "^2.9.0",
4444
"lerna-changelog": "^0.7.0",
45-
"lint-staged": "^6.1.0",
45+
"lint-staged": "^7.0.0",
4646
"markdown-table": "^1.1.1",
4747
"minimist": "^1.2.0",
48-
"prettier": "^1.10.2",
48+
"prettier": "^1.11.0",
4949
"request": "^2.83.0",
5050
"rimraf": "^2.6.2",
5151
"through2": "^2.0.3",
52-
"uglify-js": "^3.3.10",
52+
"uglify-js": "^3.3.12",
5353
"util.promisify": "^1.0.0"
5454
},
5555
"engines": {

smoke/smoke-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class SmokeTest {
3838

3939
this.installCommand = this.options.install
4040
? `cd ${this.path} && ${this.options.install}`
41-
: `cd ${this.path} && npm install`;
41+
: `cd ${this.path} && npm install --no-package-lock`;
4242

4343
this.buildCommand = this.options.build
4444
? `cd ${this.path} && ${this.options.build}`

0 commit comments

Comments
 (0)