chore: normalize to bun monorepo conventions
CI / check (push) Failing after 43s

Applied monorepo normalization:
- Updated TypeScript to use composite project references with NodeNext
- Configured Biome for linting and formatting
- Standardized package.json metadata across all packages
- Set up changesets for version management and npm publishing
- Added vitest test infrastructure to all packages
- Created Gitea Actions CI pipeline
- Added solve-issue workflow

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-29 04:39:36 +00:00
parent 1ea058a7a6
commit 064c9afa1e
46 changed files with 1166 additions and 20 deletions
+10 -4
View File
@@ -8,14 +8,20 @@
"@biomejs/biome": "^2.0.0",
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@types/node": "^22.0.0",
"bun-types": "^1.3.14",
"typescript": "^5.8.0"
"typescript": "^5.8.0",
"vitest": "^4.1.7"
},
"scripts": {
"build": "tsc --build packages/json-cas packages/json-cas-fs",
"test": "bun test",
"build": "bunx tsc --build",
"typecheck": "bunx tsc --build",
"test": "bun run --filter './packages/*' test",
"test:ci": "bun run --filter './packages/*' test:ci",
"check": "biome check .",
"format": "biome format --write .",
"release": "changeset version && bun run build && changeset publish"
"changeset": "bunx changeset",
"version": "bunx changeset version",
"release": "bun run build && bun run test && node scripts/publish-all.mjs"
}
}