Skip to content

Commit

Permalink
Update Node to v20.14.0
Browse files Browse the repository at this point in the history
Not v20.15.0 due to zstd-codec bug incompatibility, but there's no
important differences for us AFAICT.
  • Loading branch information
pimterry committed Jul 3, 2024
1 parent 045d75e commit af61190
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 20.11.1
node-version: 20.14.0

- run: npm install -g npm@^8

Expand Down
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
"@types/klaw": "^3.0.2",
"@types/lodash": "^4.14.117",
"@types/mocha": "^5.2.5",
"@types/node": "~20.11.18",
"@types/node": "~20.14.0",
"@types/node-forge": "^0.9.9",
"@types/request-promise-native": "^1.0.15",
"@types/rimraf": "^2.0.2",
Expand Down Expand Up @@ -149,7 +149,7 @@
}
},
"engines": {
"node": "v20.11.1"
"node": "v20.14.0"
},
"keywords": [
"http",
Expand Down Expand Up @@ -192,7 +192,7 @@
}
},
"node": {
"version": "20.11.1",
"version": "20.14.0",
"targets": [
"win32-x64",
"linux-x64",
Expand Down
2 changes: 1 addition & 1 deletion prepare.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const OVERRIDES_DIR = path.join(__dirname, 'overrides');
(async () => {
console.log('Installing override npm dependencies...');

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

0 comments on commit af61190

Please sign in to comment.