Skip to content
This repository has been archived by the owner on Jun 13, 2022. It is now read-only.

Commit

Permalink
refactor: drop support for Node.js v8
Browse files Browse the repository at this point in the history
BREAKING CHANGE: minimum required Node.js version is 10.x
  • Loading branch information
juliomrqz committed Dec 18, 2019
1 parent dcfa37b commit b79f140
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 15 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
language: node_js
node_js:
- "8"
- "10"
- "12"

Expand Down
7 changes: 2 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Test against the latest version of this Node.js version
environment:
matrix:
- nodejs_version: "8"
- nodejs_version: "10"
- nodejs_version: "12"

cache:
- node_modules
Expand All @@ -22,12 +22,9 @@ test_script:

# run tests
- yarn run lint
- yarn run test:demo
- yarn run test

# demo building
- yarn run demo:build
- yarn run demo:generate

# Don't actually build.
build: off

Expand Down
2 changes: 1 addition & 1 deletion packages/@statusfy/core/lib/init/template-package.json.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"statusfy": "^<%= options.statusfyVersion %>"
},
"engines": {
"node": ">=8.10",
"node": ">=10",
"npm": ">=5"
}
}
4 changes: 2 additions & 2 deletions packages/@statusfy/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
"eslint-plugin-standard": "4.0.1"
},
"engines": {
"node": ">=8.10",
"npm": ">=6.13.4"
"node": ">=10",
"npm": ">=5"
}
}
4 changes: 2 additions & 2 deletions packages/demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"stylus-loader": "3.0.2"
},
"engines": {
"node": ">=8.10",
"npm": ">=6.13.4"
"node": ">=10",
"npm": ">=5"
}
}
2 changes: 1 addition & 1 deletion packages/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"retrieve-partners": "node scripts/partners.js"
},
"engines": {
"node": ">=8.10"
"node": ">=10"
},
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/statusfy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
"@statusfy/editor": "0.4.3"
},
"engines": {
"node": ">=8.10",
"npm": ">=6.13.4"
"node": ">=10",
"npm": ">=5"
},
"collective": {
"url": "https://opencollective.com/statusfy",
Expand Down
2 changes: 1 addition & 1 deletion packages/website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,6 @@
"prettier": "1.19.1"
},
"engines": {
"node": ">=8.10"
"node": ">=10"
}
}

0 comments on commit b79f140

Please sign in to comment.