@astrofoundry/grimoire 3.26.5 → 3.26.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@astrofoundry/grimoire",
3
- "version": "3.26.5",
3
+ "version": "3.26.6",
4
4
  "description": "Documentation RAG System",
5
5
  "keywords": [],
6
6
  "author": "",
@@ -38,8 +38,8 @@
38
38
  "check": "tsc --noEmit && eslint . && vitest run",
39
39
  "build": "node esbuild.config.mjs",
40
40
  "build:watch": "node esbuild.config.mjs --watch",
41
- "release:patch": "v=$(pnpm version patch --no-git-tag-version) && git add -A && git commit -m \"Release $v\" && git tag $v && git push && git push origin $v",
42
- "release:minor": "v=$(pnpm version minor --no-git-tag-version) && git add -A && git commit -m \"Release $v\" && git tag $v && git push && git push origin $v",
43
- "release:major": "v=$(pnpm version major --no-git-tag-version) && git add -A && git commit -m \"Release $v\" && git tag $v && git push && git push origin $v"
41
+ "release:patch": "pnpm check && pnpm version patch -m \"Release v%s\" && git push --follow-tags",
42
+ "release:minor": "pnpm check && pnpm version minor -m \"Release v%s\" && git push --follow-tags",
43
+ "release:major": "pnpm check && pnpm version major -m \"Release v%s\" && git push --follow-tags"
44
44
  }
45
45
  }