@astrofoundry/pi-astro 0.16.1 → 0.17.1
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.
- package/package.json +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@astrofoundry/pi-astro",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.17.1",
|
|
4
4
|
"description": "Personal pi customizations (extensions, skills, prompts, themes) for the pi coding agent.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pi-package"
|
|
@@ -79,8 +79,8 @@
|
|
|
79
79
|
"lint": "eslint .",
|
|
80
80
|
"typecheck": "tsc --noEmit",
|
|
81
81
|
"check": "tsc --noEmit && eslint . && vitest run --coverage",
|
|
82
|
-
"release:patch": "
|
|
83
|
-
"release:minor": "
|
|
84
|
-
"release:major": "
|
|
82
|
+
"release:patch": "pnpm check && pnpm version patch -m \"Release v%s\" && git push --follow-tags",
|
|
83
|
+
"release:minor": "pnpm check && pnpm version minor -m \"Release v%s\" && git push --follow-tags",
|
|
84
|
+
"release:major": "pnpm check && pnpm version major -m \"Release v%s\" && git push --follow-tags"
|
|
85
85
|
}
|
|
86
86
|
}
|