Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ node_js:
- '6'

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

before_script:
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cache:

install:
- ps: Install-Product node $env:nodejs_version x64
- npm install -g yarn@1.3.2
- npm install -g yarn@1.5.1
- set PATH=%APPDATA%\npm;%PATH%
- yarn

Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,33 +23,33 @@
"@babel/plugin-transform-block-scoping": "^7.0.0-beta.40",
"@babel/preset-env": "^7.0.0-beta.40",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^22.2.2",
"babel-jest": "^22.4.1",
"butternut": "^0.4.6",
"bytes": "^3.0.0",
"chalk": "^2.3.1",
"cli-table": "^0.3.1",
"closure-compiler": "^0.2.12",
"codecov": "^3.0.0",
"commander": "^2.14.1",
"eslint": "^4.17.0",
"eslint": "^4.18.1",
"eslint-plugin-prettier": "^2.6.0",
"fancy-log": "^1.3.2",
"fs-readdir-recursive": "^1.1.0",
"google-closure-compiler-js": "^20180204.0.0",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-babel": "^8.0.0-beta.1",
"gulp-newer": "^1.4.0",
"jest-cli": "^22.3.0",
"jest-cli": "^22.4.2",
"lerna": "^2.9.0",
"lerna-changelog": "^0.7.0",
"lint-staged": "^6.1.0",
"lint-staged": "^7.0.0",
"markdown-table": "^1.1.1",
"minimist": "^1.2.0",
"prettier": "^1.10.2",
"prettier": "^1.11.0",
"request": "^2.83.0",
"rimraf": "^2.6.2",
"through2": "^2.0.3",
"uglify-js": "^3.3.10",
"uglify-js": "^3.3.12",
"util.promisify": "^1.0.0"
Copy link
Copy Markdown
Member

@vigneshshanmugam vigneshshanmugam Feb 28, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is this still required? node 6?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes. for node 6

},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion smoke/smoke-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class SmokeTest {

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

this.buildCommand = this.options.build
? `cd ${this.path} && ${this.options.build}`
Expand Down
Loading