Skip to content
This repository was archived by the owner on Jul 20, 2023. It is now read-only.

Commit 0679cda

Browse files
build!: update library to use Node 12 (#304)
* feat!: Update library to use Node 12 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent b417096 commit 0679cda

File tree

8 files changed

+8
-89
lines changed

8 files changed

+8
-89
lines changed

.github/sync-repo-settings.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ branchProtectionRules:
99
- "ci/kokoro: System test"
1010
- docs
1111
- lint
12-
- test (10)
1312
- test (12)
1413
- test (14)
14+
- test (16)
1515
- cla/google
1616
- windows
1717
- OwlBot Post Processor

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
node: [10, 12, 14]
12+
node: [12, 14, 16]
1313
steps:
1414
- uses: actions/checkout@v3
1515
- uses: actions/setup-node@v3

.kokoro/continuous/node10/common.cfg

-34
This file was deleted.

.kokoro/continuous/node10/docs.cfg

-4
This file was deleted.

.kokoro/continuous/node10/test.cfg

-9
This file was deleted.

.kokoro/presubmit/node10/common.cfg

-34
This file was deleted.

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -47,29 +47,29 @@
4747
"test": "c8 node build/test/run.js"
4848
},
4949
"dependencies": {
50-
"google-gax": "^2.24.1",
50+
"google-gax": "^3.0.1",
5151
"protobuf.js": "^1.1.2"
5252
},
5353
"devDependencies": {
5454
"@types/mocha": "^9.0.0",
5555
"@types/node": "^16.0.0",
5656
"@types/sinon": "^10.0.0",
5757
"c8": "^7.3.5",
58-
"gts": "^3.0.2",
58+
"gts": "^3.1.0",
5959
"jsdoc": "^3.6.6",
6060
"jsdoc-fresh": "^1.0.2",
6161
"jsdoc-region-tag": "^1.0.6",
6262
"linkinator": "^2.2.2",
63-
"mocha": "^8.2.1",
63+
"mocha": "^9.2.2",
6464
"null-loader": "^4.0.1",
6565
"pack-n-play": "^1.0.0-2",
6666
"sinon": "^13.0.0",
6767
"ts-loader": "^9.0.0",
68-
"typescript": "^4.0.5",
68+
"typescript": "^4.6.4",
6969
"webpack": "^5.4.0",
7070
"webpack-cli": "^4.2.0"
7171
},
7272
"engines": {
73-
"node": ">=10.0.0"
73+
"node": ">=12.0.0"
7474
}
7575
}

samples/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"license": "Apache-2.0",
55
"author": "Google LLC",
66
"engines": {
7-
"node": ">=10"
7+
"node": ">=12.0.0"
88
},
99
"files": [
1010
"*.js"

0 commit comments

Comments
 (0)