Skip to content
This repository was archived by the owner on Apr 3, 2024. It is now read-only.

Commit 01dc0e2

Browse files
AVaksmanJustinBeckwithBenjamin E. Coe
authored
feat!: require node 10 in engines field (#852)
Co-authored-by: Justin Beckwith <justin.beckwith@gmail.com> Co-authored-by: Benjamin E. Coe <bencoe@google.com>
1 parent 9a8d85f commit 01dc0e2

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
node: [8, 10, 12, 13]
12+
node: [10, 12, 13]
1313
steps:
1414
- uses: actions/checkout@v2
1515
- uses: actions/setup-node@v1

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
],
2020
"license": "Apache-2.0",
2121
"engines": {
22-
"node": ">=8.10.0"
22+
"node": ">=10"
2323
},
2424
"files": [
2525
"build/src"

samples/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"author": "Google LLC",
77
"repository": "googleapis/cloud-debug-nodejs",
88
"engines": {
9-
"node": ">=8"
9+
"node": ">=10"
1010
},
1111
"scripts": {
1212
"deploy": "gcloud app deploy",

0 commit comments

Comments
 (0)