Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b0787f9

Browse files
committedJan 16, 2022
build(deps): drop support for Node 10 and 12 (#229)
And set Node 16 as the default. BREAKING CHANGE: This drops support for Node 10 and 12 because `vsce` itself also did. Make sure your pipeline now runs in an environment with Node 14 or higher.
1 parent f370dfe commit b0787f9

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed
 

‎.github/workflows/ci.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@ jobs:
1717
strategy:
1818
matrix:
1919
node-version:
20-
- 10
21-
- 12
2220
- 14
21+
- 16
2322

2423
steps:
2524
- uses: actions/checkout@v2

‎package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "semantic-release plugin to package and publish VS Code extensions",
55
"license": "MIT",
66
"engines": {
7-
"node": ">=10.18"
7+
"node": ">=14"
88
},
99
"repository": "https://github.com/felipecrs/semantic-release-vsce.git",
1010
"bugs": "https://github.com/felipecrs/semantic-release-vsce/issues",
@@ -48,8 +48,8 @@
4848
"preset": "conventionalcommits"
4949
},
5050
"volta": {
51-
"node": "14.17.6",
52-
"npm": "7.23.0"
51+
"node": "16.13.2",
52+
"npm": "8.3.1"
5353
},
5454
"dependencies": {
5555
"@semantic-release/error": "^2.2.0",

0 commit comments

Comments
 (0)
Please sign in to comment.