Skip to content

Commit

Permalink
Update Node version to 13 (#1153)
Browse files Browse the repository at this point in the history
* Update Node version

* Update mock-fs version

* Trigger a build

* upgrade nodejs for appveyor

* Remove newline in .npmrc

* Check with chrome

* Check with chrome 2
  • Loading branch information
cherifGsoul authored Feb 11, 2020
1 parent 58df60c commit acd2fb9
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
package-lock=false
package-lock=false
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: node_js
node_js:
- 8
- 10.2.1
- 13.5.0
before_script:
- npm dedupe
sudo: false
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
environment:
matrix:
# node.js
- nodejs_version: "8"
- nodejs_version: "13.5.0"

# Install scripts. (runs after repo cloning)
install:
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"jshint": "~2.9.1",
"mocha": "^3.5.3",
"mocha-lcov-reporter": "^1.2.0",
"mock-fs": "4.4.1",
"mock-fs": "4.10.4",
"mockery": "^2.0.0",
"rimraf": "^2.6.2",
"serve-static": "^1.12.6",
Expand Down Expand Up @@ -87,7 +87,7 @@
],
"scripts": {
"test": "npm run jshint && npm run mocha && npm run test:browser && npm run test:slim-worker-single && npm run test:slim-worker-progressive && npm run test:exports-worker",
"test:browser": "npm run worker-test-build && testee test/browser/test.html --browsers firefox --reporter Spec",
"test:browser": "npm run worker-test-build && testee test/browser/test.html --browsers chrome --reporter Spec",
"worker-test-build": "node bin/steal build --main worker --config test/browser/webworker/stealconfig.js --bundle-steal --quiet",
"mocha": "mocha test/test.js",
"jshint": "jshint lib/ Gruntfile.js --config",
Expand All @@ -99,13 +99,13 @@
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"test:slim-worker-single": "node test/slim/worker/single/build.js && testee test/slim/worker/single/worker.html --browsers firefox --reporter Spec",
"test:slim-worker-progressive": "node test/slim/worker/progressive/build.js && testee test/slim/worker/progressive/worker.html --browsers firefox --reporter Spec",
"test:slim-worker-shared": "node test/slim/shared_bundles/build.js && testee test/slim/shared_bundles/worker.html --browsers firefox --reporter Spec",
"test:exports-worker": "node test/exports_worker/exports.js && testee test/exports_worker/worker.html --browsers firefox --reporter Spec"
"test:slim-worker-single": "node test/slim/worker/single/build.js && testee test/slim/worker/single/worker.html --browsers chrome --reporter Spec",
"test:slim-worker-progressive": "node test/slim/worker/progressive/build.js && testee test/slim/worker/progressive/worker.html --browsers chrome --reporter Spec",
"test:slim-worker-shared": "node test/slim/shared_bundles/build.js && testee test/slim/shared_bundles/worker.html --browsers chrome --reporter Spec",
"test:exports-worker": "node test/exports_worker/exports.js && testee test/exports_worker/worker.html --browsers chrome --reporter Spec"
},
"engines": {
"node": "8.x - 10.x"
"node": "8.x - 13.x"
},
"system": {
"npmDependencies": [
Expand Down

0 comments on commit acd2fb9

Please sign in to comment.