@ancatag/at-design 0.5.2 → 0.6.0
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/README.md +4 -4
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -437,11 +437,11 @@ If you need to manually trigger a release:
|
|
|
437
437
|
For local testing and preview:
|
|
438
438
|
|
|
439
439
|
```bash
|
|
440
|
-
#
|
|
441
|
-
pnpm
|
|
440
|
+
# Automate build, commit, and push in one step
|
|
441
|
+
pnpm auto-push "feat: description of changes"
|
|
442
442
|
|
|
443
|
-
#
|
|
444
|
-
pnpm
|
|
443
|
+
# Automate build and push (requires manual commit)
|
|
444
|
+
pnpm push
|
|
445
445
|
|
|
446
446
|
# Manual version bump (for testing)
|
|
447
447
|
pnpm version:patch
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ancatag/at-design",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "A shared design system package providing reusable UI components with theme-agnostic styling",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -40,6 +40,8 @@
|
|
|
40
40
|
"version:info": "node scripts/version-info.js",
|
|
41
41
|
"changelog:update": "node scripts/update-changelog.js",
|
|
42
42
|
"publish:npm": "npm publish --access public --registry https://registry.npmjs.org/",
|
|
43
|
+
"push": "pnpm build:clean && git push",
|
|
44
|
+
"auto-push": "node scripts/auto-push.js",
|
|
43
45
|
"release:patch": "node scripts/version-bump.js patch && pnpm publish:npm",
|
|
44
46
|
"release:minor": "node scripts/version-bump.js minor && pnpm publish:npm",
|
|
45
47
|
"release:major": "node scripts/version-bump.js major && pnpm publish:npm"
|