Skip to content

Commit af61190

Browse files
committed
Update Node to v20.14.0
Not v20.15.0 due to zstd-codec bug incompatibility, but there's no important differences for us AFAICT.
1 parent 045d75e commit af61190

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
- uses: actions/setup-node@v4
1818
with:
19-
node-version: 20.11.1
19+
node-version: 20.14.0
2020

2121
- run: npm install -g npm@^8
2222

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
"@types/klaw": "^3.0.2",
108108
"@types/lodash": "^4.14.117",
109109
"@types/mocha": "^5.2.5",
110-
"@types/node": "~20.11.18",
110+
"@types/node": "~20.14.0",
111111
"@types/node-forge": "^0.9.9",
112112
"@types/request-promise-native": "^1.0.15",
113113
"@types/rimraf": "^2.0.2",
@@ -149,7 +149,7 @@
149149
}
150150
},
151151
"engines": {
152-
"node": "v20.11.1"
152+
"node": "v20.14.0"
153153
},
154154
"keywords": [
155155
"http",
@@ -192,7 +192,7 @@
192192
}
193193
},
194194
"node": {
195-
"version": "20.11.1",
195+
"version": "20.14.0",
196196
"targets": [
197197
"win32-x64",
198198
"linux-x64",

prepare.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const OVERRIDES_DIR = path.join(__dirname, 'overrides');
2727
(async () => {
2828
console.log('Installing override npm dependencies...');
2929

30-
await spawn(process.platform === 'win32' ? 'npm.cmd' : 'npm', ['ci', '--production'], {
30+
await spawn(process.platform === 'win32' ? 'npm.cmd' : 'npm', ['ci', '--omit=dev'], {
3131
cwd: path.join(OVERRIDES_DIR, 'js'),
3232
stdio: 'inherit'
3333
});

0 commit comments

Comments
 (0)