Skip to content

Commit 2785d74

Browse files
Fix release command paths and add missing aube-lock.yaml
The repo is not a monorepo — package.json is at the root, not packages/dependicus/. Also added aube-lock.yaml to the git add lists since mise update-all-lockfiles regenerates it too. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 8936bf5 commit 2785d74

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.claude/commands/prerelease.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
1. Verify you're on the main branch and it's up to date with origin
2-
2. Parse the current version from `packages/dependicus/package.json`
2+
2. Parse the current version from `package.json`
33
3. Validate the version is in format `X.Y.Z-rc.N` (e.g., `0.1.9-rc.5`)
44
- If not in this format, ERROR and tell the user to manually fix it first
55
4. Tag, push, and create a GitHub prerelease:
@@ -15,11 +15,11 @@
1515
```
1616
Tell the user this run requires environment approval before it will publish.
1717
6. Increment the rc number: `-rc.5``-rc.6`
18-
7. Update the version in `packages/dependicus/package.json`
18+
7. Update the version in `package.json`
1919
8. Run `mise update-all-lockfiles` to update all lockfiles
2020
9. Commit and push:
2121
```bash
22-
git add packages/dependicus/package.json pnpm-lock.yaml package-lock.json yarn.lock bun.lock
22+
git add package.json pnpm-lock.yaml package-lock.json yarn.lock bun.lock aube-lock.yaml
2323
git commit -m "Begin v<new-version> development"
2424
git push origin main
2525
```

.claude/commands/release.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
1. Verify you're on the main branch and it's up to date with origin
2-
2. Parse the current version from `packages/dependicus/package.json`
2+
2. Parse the current version from `package.json`
33
3. Strip the `-rc.N` suffix to get the stable version (e.g., `0.1.9-rc.5``0.1.9`)
44
- If the version is already stable (no `-rc.N`), ERROR and tell the user
5-
4. Update the version in `packages/dependicus/package.json`
5+
4. Update the version in `package.json`
66
5. Update CHANGELOG.md: replace "Unreleased" with today's date, remove empty sections
77
6. Run `mise update-all-lockfiles` to update all lockfiles
88
7. Commit the version and changelog changes:
99
```bash
10-
git add packages/dependicus/package.json CHANGELOG.md pnpm-lock.yaml package-lock.json yarn.lock bun.lock
10+
git add package.json CHANGELOG.md pnpm-lock.yaml package-lock.json yarn.lock bun.lock aube-lock.yaml
1111
git commit -m "Release v<version>"
1212
```
1313
8. Tag, push, and create a GitHub release with the changelog notes:
@@ -24,7 +24,7 @@
2424
Tell the user this run requires environment approval before it will publish.
2525
10. Bump to the next patch version with `-rc.0` suffix (e.g., `0.1.9``0.1.10-rc.0`), add a new unreleased section to CHANGELOG.md, run `mise update-all-lockfiles`, then commit and push:
2626
```bash
27-
git add packages/dependicus/package.json CHANGELOG.md pnpm-lock.yaml package-lock.json yarn.lock bun.lock
27+
git add package.json CHANGELOG.md pnpm-lock.yaml package-lock.json yarn.lock bun.lock aube-lock.yaml
2828
git commit -m "Begin v<next-version> development"
2929
git push origin main
3030
```

0 commit comments

Comments
 (0)