Skip to content

Commit 3858cf8

Browse files
author
Corentin Mors
committed
Bump version to 6.2424.0
1 parent 1af669d commit 3858cf8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dashlane/cli",
3-
"version": "6.2421.0",
3+
"version": "6.2424.0",
44
"description": "Manage your Dashlane vault through a CLI tool",
55
"type": "module",
66
"main": "dist/index.cjs",
@@ -32,7 +32,7 @@
3232
"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",
3333
"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",
3434
"pkg": "yarn run build && yarn run pkg:linux && yarn run pkg:macos && yarn run pkg:win",
35-
"version:bump": "yarn run build && node ./build/bumpVersion.js",
35+
"version:bump": "node --loader ts-node/esm ./src/bumpVersion.ts",
3636
"prepare": "husky",
3737
"test": "mocha"
3838
},

src/cliVersion.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { CliVersion } from './types.js';
22

3-
export const CLI_VERSION: CliVersion = { major: 6, minor: 2421, patch: 0 };
3+
export const CLI_VERSION: CliVersion = { major: 6, minor: 2424, patch: 0 };
44
export const breakingChangesVersions: CliVersion[] = [];
55

66
export const cliVersionToString = (version: CliVersion): string => {

0 commit comments

Comments
 (0)