Skip to content

Commit 2d8996e

Browse files
authored
build!: update library to use Node 12 (#434)
* build!: Update library to use Node 12 Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 1300b60 commit 2d8996e

20 files changed

+7
-176
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/lint.cfg

-4
This file was deleted.

.kokoro/continuous/node10/samples-test.cfg

-7
This file was deleted.

.kokoro/continuous/node10/system-test.cfg

-7
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/samples-test.cfg

-7
This file was deleted.

.kokoro/presubmit/node10/system-test.cfg

-7
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

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"license": "Apache-2.0",
66
"author": "google-proto-files project authors",
77
"engines": {
8-
"node": ">=10"
8+
"node": ">=12.0.0"
99
},
1010
"repository": "googleapis/nodejs-proto-files",
1111
"main": "./build/src/index.js",
@@ -53,11 +53,11 @@
5353
"codecov": "^3.0.0",
5454
"decompress-zip": "^0.3.2",
5555
"got": "^11.0.0",
56-
"gts": "^2.0.0",
56+
"gts": "^3.1.0",
5757
"linkinator": "^2.0.0",
58-
"mocha": "^8.0.0",
58+
"mocha": "^9.2.2",
5959
"proxyquire": "^2.0.0",
6060
"sinon": "^14.0.0",
61-
"typescript": "^3.8.3"
61+
"typescript": "^4.6.4"
6262
}
6363
}

samples/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"*.js"
77
],
88
"engines": {
9-
"node": ">=10"
9+
"node": ">=12.0.0"
1010
},
1111
"repository": "googleapis/nodejs-proto-files",
1212
"private": true,

0 commit comments

Comments
 (0)