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

Commit a9fbbcd

Browse files
build!: update library to use Node 12 (#714)
* build!: 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 c54bc6c commit a9fbbcd

File tree

15 files changed

+8
-145
lines changed

15 files changed

+8
-145
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/continuous/node8/common.cfg

-24
This file was deleted.

.kokoro/continuous/node8/test.cfg

Whitespace-only changes.

.kokoro/presubmit/node10/common.cfg

-34
This file was deleted.

.kokoro/presubmit/node10/docs.cfg

-4
This file was deleted.

.kokoro/presubmit/node10/lint.cfg

-4
This file was deleted.

.kokoro/presubmit/node10/test.cfg

Whitespace-only changes.

.kokoro/presubmit/node8/common.cfg

-24
This file was deleted.

.kokoro/presubmit/node8/test.cfg

Whitespace-only changes.

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"license": "Apache-2.0",
66
"author": "Google Inc",
77
"engines": {
8-
"node": ">=10"
8+
"node": ">=12.0.0"
99
},
1010
"repository": "googleapis/nodejs-video-intelligence",
1111
"main": "build/src/index.js",
@@ -44,25 +44,25 @@
4444
"precompile": "gts clean"
4545
},
4646
"dependencies": {
47-
"google-gax": "^2.24.1"
47+
"google-gax": "^3.0.1"
4848
},
4949
"devDependencies": {
5050
"@types/mocha": "^9.0.0",
5151
"@types/node": "^16.0.0",
5252
"@types/sinon": "^10.0.0",
5353
"c8": "^7.0.0",
5454
"eslint-plugin-node": "^11.1.0",
55-
"gts": "^3.0.0",
55+
"gts": "^3.1.0",
5656
"jsdoc": "^3.6.3",
5757
"jsdoc-fresh": "^1.0.2",
5858
"jsdoc-region-tag": "^1.0.4",
5959
"linkinator": "^2.0.3",
60-
"mocha": "^8.0.0",
60+
"mocha": "^9.2.2",
6161
"null-loader": "^4.0.0",
6262
"pack-n-play": "^1.0.0-2",
6363
"prettier": "^2.1.2",
6464
"sinon": "^13.0.0",
6565
"ts-loader": "^9.0.0",
66-
"typescript": "^3.8.3"
66+
"typescript": "^4.6.4"
6767
}
6868
}

samples/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"author": "Google Inc.",
1010
"repository": "googleapis/nodejs-video-intelligence",
1111
"engines": {
12-
"node": ">=8"
12+
"node": ">=12.0.0"
1313
},
1414
"scripts": {
1515
"test": "mocha system-test --timeout=800000"

0 commit comments

Comments
 (0)