chore: rebranding cleanup — reset versions to 0.1.0, bun→pnpm in docs
CI / check (pull_request) Successful in 2m49s

- All 9 packages reset to version 0.1.0
- CLAUDE.md: bun→pnpm, fixed→independent versioning, proman commands
- docs/architecture.md: bun→pnpm in toolchain table
- docs/sync-readme.md: bun→pnpm in conventions
This commit is contained in:
2026-06-04 13:05:26 +00:00
parent 7fc02e50c0
commit 3401873051
11 changed files with 28 additions and 27 deletions
+16 -15
View File
@@ -222,41 +222,42 @@ Test files (`__tests__/**`) are exempt.
| Tool | Purpose |
|------|---------|
| **bun** | Package manager + runtime |
| **pnpm** | Package manager |
| **TypeScript** | Type checking (strict mode) |
| **Biome** | Lint + format (replaces ESLint + Prettier) |
| **vitest** | Test runner (`cli` uses vitest; other packages use `bun test`) |
| **vitest** | Test runner (all packages) |
### Development Workflow
```bash
# ── Setup ──
bun install # install all workspace dependencies
pnpm install # install all workspace dependencies
# ── Daily development ──
bun run build # tsc --build (all packages, dependency order)
bun run check # tsc --build + biome check + lint-log-tags
bun run format # biome format --write
bun test # run tests across all packages
pnpm run build # build all packages (dependency order)
pnpm run check # biome check + lint-log-tags
pnpm run typecheck # tsc --build
pnpm run test # run tests across all packages
# ── Before committing ──
bun run check # must pass — typecheck + lint + log tag validation
bun test # must pass — all package tests
pnpm run check # must pass — lint + log tag validation
pnpm run typecheck # must pass — type checking
pnpm run test # must pass — all package tests
```
### Publishing
All public `@united-workforce/*` packages are published to **npmjs.org** with **fixed mode** (all packages share the same version number).
All public `@united-workforce/*` packages are published to **npmjs.org** with **independent versioning**.
```bash
# 1. Add a changeset describing the change
bun changeset
npx changeset
# 2. Bump all package versions + generate CHANGELOGs
bun version
# 2. Bump versions + generate CHANGELOGs
proman bump
# 3. Build, test, and publish (runs scripts/publish-all.mjs)
bun release
# 3. Build, test, and publish
proman publish
# Or publish manually with a tag:
node scripts/publish-all.mjs --tag alpha