|
72 | 72 | "changelog:json": "bun node_modules/@stacksjs/logsmith/dist/bin/cli.js --format json --output changelog.json --exclude-types \"chore\" --max-commits 50",
|
73 | 73 | "changelog:html": "bun node_modules/@stacksjs/logsmith/dist/bin/cli.js --format html --output changelog.html --exclude-types \"chore\" --max-commits 50",
|
74 | 74 | "prepublishOnly": "bun run build",
|
75 |
| - "release": "bun run scripts/auto-version.ts", |
76 |
| - "release:major": "bun node_modules/@stacksjs/bumpx/dist/bin/cli.js major --commit --tag --commit-message \"chore(release): bump version to v%s\" --no-push --yes && bun run changelog:generate && git add CHANGELOG.md && git commit --amend --no-edit", |
77 |
| - "release:minor": "bun node_modules/@stacksjs/bumpx/dist/bin/cli.js minor --commit --tag --commit-message \"chore(release): bump version to v%s\" --no-push --yes && bun run changelog:generate && git add CHANGELOG.md && git commit --amend --no-edit", |
78 |
| - "release:patch": "bun node_modules/@stacksjs/bumpx/dist/bin/cli.js patch --commit --tag --commit-message \"chore(release): bump version to v%s\" --no-push --yes && bun run changelog:generate && git add CHANGELOG.md && git commit --amend --no-edit", |
| 75 | + "bumpx": "bun node_modules/@stacksjs/bumpx/dist/bin/cli.js", |
| 76 | + "release": "bun run scripts/auto-version.ts, bun run changelog && bunx bumpp package.json --all", |
| 77 | + "release:major": "bumpx major --commit --tag --commit-message \"chore(release): bump version to v%s\" --no-push --yes && bun run changelog:generate && git add CHANGELOG.md && git commit --amend --no-edit", |
| 78 | + "release:minor": "bumpx minor --commit --tag --commit-message \"chore(release): bump version to v%s\" --no-push --yes && bun run changelog:generate && git add CHANGELOG.md && git commit --amend --no-edit", |
| 79 | + "release:patch": "bumpx patch --commit --tag --commit-message \"chore(release): bump version to v%s\" --no-push --yes && bun run changelog:generate && git add CHANGELOG.md && git commit --amend --no-edit", |
79 | 80 | "release:auto": "bun run scripts/auto-version.ts",
|
80 | 81 | "setup": "bun run scripts/setup.ts",
|
81 | 82 | "test": "bun test",
|
|
0 commit comments