Skip to content

Commit b3d45f1

Browse files
shchekleinskshetry
andauthored
bump node version to 20 (#5953)
Co-authored-by: Saugat Pachhai (सौगात) <[email protected]>
1 parent 427d5c0 commit b3d45f1

File tree

12 files changed

+33
-25
lines changed

12 files changed

+33
-25
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Setup Node.js environment
2424
uses: actions/setup-node@v6
2525
with:
26-
node-version: '16'
26+
node-version: '20'
2727
cache: 'yarn'
2828

2929
- name: Turbo cache

.github/workflows/cross-platform-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Setup Node.js environment
2727
uses: actions/setup-node@v6
2828
with:
29-
node-version: '16'
29+
node-version: '20'
3030
cache: yarn
3131

3232
- name: Turbo cache

.github/workflows/dvc-cli-output-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Setup Node.js environment
2828
uses: actions/setup-node@v6
2929
with:
30-
node-version: '16'
30+
node-version: '20'
3131
cache: yarn
3232

3333
- run: yarn install

.github/workflows/end-to-end-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Setup Node.js environment
2929
uses: actions/setup-node@v6
3030
with:
31-
node-version: '16'
31+
node-version: '20'
3232
cache: 'yarn'
3333

3434
- name: Turbo cache

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Setup Node.js environment
2929
uses: actions/setup-node@v6
3030
with:
31-
node-version: '16'
31+
node-version: '20'
3232
cache: 'yarn'
3333

3434
- run: yarn install

extension/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
"theme": "dark"
4040
},
4141
"engines": {
42-
"vscode": "^1.75.0",
43-
"node": ">=16.13.0"
42+
"vscode": "^1.90.0",
43+
"node": ">=20"
4444
},
4545
"activationEvents": [
4646
"onStartupFinished",
@@ -1645,11 +1645,11 @@
16451645
"@types/lodash.omit": "4.5.9",
16461646
"@types/mocha": "10.0.10",
16471647
"@types/mock-require": "3.0.0",
1648-
"@types/node": "16.x",
1648+
"@types/node": "20.x",
16491649
"@types/sinon-chai": "3.2.12",
16501650
"@types/uuid": "10.0.0",
16511651
"@types/vega": "3.2.0",
1652-
"@types/vscode": "1.75.0",
1652+
"@types/vscode": "1.90.0",
16531653
"@vscode/test-electron": "2.4.1",
16541654
"@vscode/vsce": "2.25.0",
16551655
"@wdio/cli": "8.41.0",

extension/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
"compilerOptions": {
33
"resolveJsonModule": true,
44
"module": "commonjs",
5-
"target": "es6",
5+
"target": "es2022",
66
"outDir": "dist",
7-
"lib": ["es2020"],
7+
"lib": ["es2022"],
88
"sourceMap": true,
99
"rootDir": "src",
1010
"strict": true,

languageServer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.1",
44
"license": "Apache-2.0",
55
"engines": {
6-
"node": "*"
6+
"node": ">=20"
77
},
88
"peerDependencies": {
99
"dvc": ">=0.0.1",

languageServer/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"compilerOptions": {
33
"resolveJsonModule": true,
4-
"target": "es6",
5-
"lib": ["es2020"],
4+
"target": "es2022",
5+
"lib": ["es2022"],
66
"module": "commonjs",
77
"esModuleInterop": true,
88
"sourceMap": true,

webview/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"@testing-library/react": "14.3.1",
5555
"@types/jest": "29.5.14",
5656
"@types/jsdom": "21.1.7",
57-
"@types/node": "16.x",
57+
"@types/node": "20.x",
5858
"@types/react": "18.3.18",
5959
"@types/react-dom": "18.3.5",
6060
"@types/react-virtualized": "9.22.2",

0 commit comments

Comments
 (0)