Skip to content

Commit

Permalink
build!: drop support for node.js 8.x (#142)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: This module now requires Node.js 10.x or greater.
Please upgrade to a LTS release of node.js.
  • Loading branch information
JustinBeckwith authored Feb 9, 2020
1 parent c35d0c5 commit 85642bd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .cirrus.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
container:
image: node:10
image: node:12

windows_task:
windows_container:
Expand All @@ -15,9 +15,9 @@ lint_task:
test_task:
container:
matrix:
image: node:13
image: node:12
image: node:10
image: node:8
install_script: npm install
test_script: npm test

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"typescript": "^3.6.4"
},
"engines": {
"node": ">=8"
"node": ">=10"
},
"files": [
"build/src"
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"extends": "./node_modules/gts/tsconfig-google.json",
"compilerOptions": {
"rootDir": ".",
"outDir": "build"
"outDir": "build",
"target": "es2018"
},
"include": [
"src/*.ts",
Expand Down

0 comments on commit 85642bd

Please sign in to comment.