Skip to content

Commit

Permalink
fix!: drop support for node 8 (#422)
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinBeckwith committed Jan 13, 2020
1 parent 531d848 commit 888c686
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 21 deletions.
2 changes: 0 additions & 2 deletions .cirrus.yml
Expand Up @@ -8,7 +8,6 @@ windows_task:
docker_arguments:
matrix:
- node_version: 12.1.0
- node_version: 11.14.0
install_script: npm ci
test_script: npm test

Expand All @@ -30,7 +29,6 @@ test_task:
image: node:13
image: node:12
image: node:10
image: node:8
install_script: npm ci
test_script: npm test

Expand Down
15 changes: 0 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions package.json
Expand Up @@ -32,7 +32,7 @@
"fix": "eslint --fix '**/*.ts'"
},
"engines": {
"node": ">=8"
"node": ">=10"
},
"keywords": [],
"author": "Google Inc.",
Expand Down Expand Up @@ -70,7 +70,6 @@
"@types/tmp": "^0.1.0",
"@types/update-notifier": "^2.2.0",
"@types/write-file-atomic": "^3.0.0",
"assert-rejects": "^1.0.0",
"c8": "^7.0.0",
"chai": "^4.2.0",
"codecov": "^3.0.1",
Expand Down
4 changes: 2 additions & 2 deletions tsconfig-google.json
Expand Up @@ -4,15 +4,15 @@
"allowUnusedLabels": false,
"declaration": true,
"forceConsistentCasingInFileNames": true,
"lib": ["es2016"],
"lib": ["es2018"],
"module": "commonjs",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"pretty": true,
"sourceMap": true,
"strict": true,
"target": "es2017"
"target": "es2018"
},
"exclude": [
"node_modules"
Expand Down

0 comments on commit 888c686

Please sign in to comment.