Skip to content

Commit

Permalink
feat: bump minimum node from 8 to 10
Browse files Browse the repository at this point in the history
  • Loading branch information
transitive-bullshit committed Mar 26, 2020
1 parent 313cb25 commit 2f42321
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
@@ -1,5 +1,5 @@
language: node_js
cache: yarn
node_js:
- 12
- 10
- 8
2 changes: 1 addition & 1 deletion examples/hello-world/package.json
Expand Up @@ -6,7 +6,7 @@
"license": "MIT",
"private": true,
"engines": {
"node": ">=8"
"node": ">=10"
},
"dependencies": {
"fts": "link:../../packages/fts",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -10,7 +10,7 @@
"packages/*"
],
"engines": {
"node": ">=8"
"node": ">=10"
},
"scripts": {
"start": "run-s build:clean && tsc --build tsconfig.json --watch",
Expand Down
2 changes: 1 addition & 1 deletion packages/fts-core/package.json
Expand Up @@ -8,6 +8,6 @@
"main": "build/index.js",
"typings": "build/index.d.ts",
"engines": {
"node": ">=8"
"node": ">=10"
}
}
2 changes: 1 addition & 1 deletion packages/fts-dev/package.json
Expand Up @@ -11,7 +11,7 @@
"fts-dev": "build/cli.js"
},
"engines": {
"node": ">=8"
"node": ">=10"
},
"keywords": [
"typescript",
Expand Down
2 changes: 1 addition & 1 deletion packages/fts-http-client/package.json
Expand Up @@ -8,7 +8,7 @@
"main": "build/index.js",
"typings": "build/index.d.ts",
"engines": {
"node": ">=8"
"node": ">=10"
},
"keywords": [
"typescript",
Expand Down
2 changes: 1 addition & 1 deletion packages/fts-http/package.json
Expand Up @@ -8,7 +8,7 @@
"main": "build/index.js",
"typings": "build/index.d.ts",
"engines": {
"node": ">=8"
"node": ">=10"
},
"keywords": [
"typescript",
Expand Down
2 changes: 1 addition & 1 deletion packages/fts-validator/package.json
Expand Up @@ -8,7 +8,7 @@
"main": "build/index.js",
"typings": "build/index.d.ts",
"engines": {
"node": ">=8"
"node": ">=10"
},
"dependencies": {
"ajv": "^6.7.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/fts/package.json
Expand Up @@ -11,7 +11,7 @@
"fts": "build/cli.js"
},
"engines": {
"node": ">=8"
"node": ">=10"
},
"keywords": [
"typescript",
Expand Down

0 comments on commit 2f42321

Please sign in to comment.