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

Commit 809853f

Browse files
authored
build!: update library to use Node 12 (#181)
* build!: Update library to use Node 12
1 parent cfa2b41 commit 809853f

8 files changed

Lines changed: 9 additions & 90 deletions

File tree

.github/sync-repo-settings.yaml

Lines changed: 1 addition & 1 deletion
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

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

Lines changed: 0 additions & 34 deletions
This file was deleted.

.kokoro/continuous/node10/docs.cfg

Lines changed: 0 additions & 4 deletions
This file was deleted.

.kokoro/continuous/node10/test.cfg

Lines changed: 0 additions & 9 deletions
This file was deleted.

.kokoro/presubmit/node10/common.cfg

Lines changed: 0 additions & 34 deletions
This file was deleted.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,28 +42,28 @@
4242
"prelint": "cd samples; npm link ../; npm i"
4343
},
4444
"dependencies": {
45-
"google-gax": "^2.24.1"
45+
"google-gax": "^3.0.1"
4646
},
4747
"devDependencies": {
4848
"@types/mocha": "^9.0.0",
4949
"@types/node": "^16.0.0",
5050
"@types/sinon": "^10.0.0",
5151
"c8": "^7.3.5",
52-
"gts": "^3.0.3",
52+
"gts": "^3.1.0",
5353
"jsdoc": "^3.6.6",
5454
"jsdoc-fresh": "^1.0.2",
5555
"jsdoc-region-tag": "^1.0.6",
5656
"linkinator": "^2.7.0",
57-
"mocha": "^8.2.1",
57+
"mocha": "^9.2.2",
5858
"null-loader": "^4.0.1",
5959
"pack-n-play": "^1.0.0-2",
6060
"sinon": "^14.0.0",
6161
"ts-loader": "^9.0.0",
62-
"typescript": "^4.1.2",
62+
"typescript": "^4.6.4",
6363
"webpack": "^5.9.0",
6464
"webpack-cli": "^4.2.0"
6565
},
6666
"engines": {
67-
"node": ">=10.0.0"
67+
"node": ">=12.0.0"
6868
}
6969
}

samples/package.json

Lines changed: 2 additions & 2 deletions
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"
@@ -22,4 +22,4 @@
2222
"chai": "^4.2.0",
2323
"mocha": "^8.0.0"
2424
}
25-
}
25+
}

0 commit comments

Comments
 (0)