Skip to content

Commit

Permalink
Bump version to 6.2424.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Corentin Mors committed Jun 10, 2024
1 parent 1af669d commit 3858cf8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dashlane/cli",
"version": "6.2421.0",
"version": "6.2424.0",
"description": "Manage your Dashlane vault through a CLI tool",
"type": "module",
"main": "dist/index.cjs",
Expand Down Expand Up @@ -32,7 +32,7 @@
"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",
"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",
"pkg": "yarn run build && yarn run pkg:linux && yarn run pkg:macos && yarn run pkg:win",
"version:bump": "yarn run build && node ./build/bumpVersion.js",
"version:bump": "node --loader ts-node/esm ./src/bumpVersion.ts",
"prepare": "husky",
"test": "mocha"
},
Expand Down
2 changes: 1 addition & 1 deletion src/cliVersion.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { CliVersion } from './types.js';

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

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

0 comments on commit 3858cf8

Please sign in to comment.