Skip to content

Commit f6ab018

Browse files
committedJul 22, 2024·
fix: make sure the version is up to date
1 parent e58c494 commit f6ab018

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎packages/cspell/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"watch": "tsc -b . -w -f",
5656
"compile": "tsc -b . -f",
5757
"test-watch": "vitest",
58-
"version": "node ./tools/patch-version.mjs",
58+
"version": "node ./tools/patch-version.mjs && git add .",
5959
"prepublishOnly": "pnpm run clean-build",
6060
"test:update-snapshot": "vitest run --update"
6161
},

‎packages/cspell/src/app/pkgInfo.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
export { pkgDir } from './dirname.js';
44

55
export const name = 'cspell';
6-
export const version = '8.11.0';
6+
export const version = '8.12.0';
77
export const engines = { node: '>=18' };
88

99
export const npmPackage = { name, version, engines };

0 commit comments

Comments
 (0)
Please sign in to comment.