Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix!: drop support for node 8 #422

Merged
merged 2 commits into from
Jan 13, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .cirrus.yml
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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