Skip to content

Commit 9791429

Browse files
author
Corentin Mors
committed
Fix version number
1 parent 5ae7f20 commit 9791429

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/documentation-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Set up Node.js
2222
uses: actions/setup-node@v4
2323
with:
24-
node-version: 18
24+
node-version: 22
2525

2626
- name: Build
2727
run: |

.github/workflows/manual-test-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- host: ubuntu-latest
1818
target: linux-x64
1919
runs-on: ${{ matrix.settings.host }}
20-
name: dev build - ${{ matrix.settings.target }} - node@18
20+
name: dev build - ${{ matrix.settings.target }} - node@22
2121
steps:
2222
- uses: actions/checkout@v4
2323
- name: Use Node.js

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- host: ubuntu-latest
2121
target: linux-x64
2222
runs-on: ${{ matrix.settings.host }}
23-
name: dev build - ${{ matrix.settings.target }} - node@18
23+
name: dev build - ${{ matrix.settings.target }} - node@22
2424
steps:
2525
- uses: actions/checkout@v4
2626
- name: Use Node.js

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@
2727
"format": "prettier --write src && eslint --fix src",
2828
"start": "node dist/index.cjs",
2929
"start:dev": "node build/index.js",
30-
"pkg:linux": "pkg ./dist -t node18-linux-x64 -o bundle/dcli-linux -C GZip --public --public-packages tslib,thirty-two,node-hkdf-sync,vows --no-bytecode",
31-
"pkg:macos": "pkg ./dist -t node18-macos-x64 -o bundle/dcli-macos -C GZip --public --public-packages tslib,thirty-two,node-hkdf-sync,vows --no-bytecode",
32-
"pkg:macos-arm": "pkg ./dist -t node18-macos-arm64 -o bundle/dcli-macos-arm -C GZip --public --public-packages tslib,thirty-two,node-hkdf-sync,vows --no-bytecode --no-native-build",
33-
"pkg:win": "pkg ./dist -t node18-win-x64 -o bundle/dcli-win.exe -C GZip --public --public-packages tslib,thirty-two,node-hkdf-sync,vows --no-bytecode",
30+
"pkg:linux": "pkg ./dist -t node22-linux-x64 -o bundle/dcli-linux -C GZip --public --public-packages tslib,thirty-two,node-hkdf-sync,vows --no-bytecode",
31+
"pkg:macos": "pkg ./dist -t node22-macos-x64 -o bundle/dcli-macos -C GZip --public --public-packages tslib,thirty-two,node-hkdf-sync,vows --no-bytecode",
32+
"pkg:macos-arm": "pkg ./dist -t node22-macos-arm64 -o bundle/dcli-macos-arm -C GZip --public --public-packages tslib,thirty-two,node-hkdf-sync,vows --no-bytecode --no-native-build",
33+
"pkg:win": "pkg ./dist -t node22-win-x64 -o bundle/dcli-win.exe -C GZip --public --public-packages tslib,thirty-two,node-hkdf-sync,vows --no-bytecode",
3434
"pkg": "yarn run build && yarn run pkg:linux && yarn run pkg:macos && yarn run pkg:win",
3535
"version:bump": "node --loader ts-node/esm ./src/bumpVersion.ts",
3636
"prepare": "husky",

0 commit comments

Comments
 (0)