Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ jobs:
with:
commands: >
[
"lint",
"build",
"types",
"test",
"deps"
"test"
]
16 changes: 16 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!-- intent-skills:start -->
# Skill mappings - when working in these areas, load the linked skill file into context.
skills:
- task: "Building packages for publish or generating declarations"
load: "node_modules/@bomb.sh/tools/skills/build/SKILL.md"
- task: "Writing or running tests"
load: "node_modules/@bomb.sh/tools/skills/test/SKILL.md"
- task: "Development workflow, command ordering, monorepo filtering"
load: "node_modules/@bomb.sh/tools/skills/lifecycle/SKILL.md"
- task: "Linting, code quality, or understanding lint violations"
load: "node_modules/@bomb.sh/tools/skills/lint/SKILL.md"
- task: "Formatting source files before committing"
load: "node_modules/@bomb.sh/tools/skills/format/SKILL.md"
- task: "Migrating off biome, unbuild, or other tools to bsh toolchain"
load: "node_modules/@bomb.sh/tools/skills/migrate/SKILL.md"
<!-- intent-skills:end -->
47 changes: 0 additions & 47 deletions biome.json

This file was deleted.

15 changes: 0 additions & 15 deletions build.preset.ts

This file was deleted.

13 changes: 4 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,20 @@
"private": true,
"type": "module",
"scripts": {
"stub": "pnpm -r run build --stub",
"build": "pnpm --filter \"@clack/*\" run build",
"start": "pnpm run dev",
"dev": "pnpm --filter @example/changesets run start",
"format": "biome check --write",
"lint": "biome lint --write --unsafe",
"types": "tsc --noEmit",
"deps": "pnpm exec knip --production",
"format": "bsh format",
"lint": "pnpm -r run lint",
"test": "pnpm --color -r run test",
"pretest": "pnpm run build"
},
"devDependencies": {
"@biomejs/biome": "^2.1.2",
"@bomb.sh/tools": "^0.3.4",
"@changesets/cli": "^2.29.5",
"@types/node": "^24.1.0",
"jsr": "^0.13.4",
"knip": "^5.62.0",
"typescript": "^5.8.3",
"unbuild": "^3.6.0"
"typescript": "^5.8.3"
},
"packageManager": "pnpm@9.14.2",
"volta": {
Expand Down
7 changes: 0 additions & 7 deletions packages/core/build.config.ts

This file was deleted.

8 changes: 3 additions & 5 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,13 @@
"license": "MIT",
"packageManager": "pnpm@9.14.2",
"scripts": {
"build": "unbuild",
"build": "bsh build",
"prepack": "pnpm build",
"test": "vitest run"
"test": "bsh test",
"lint": "bsh lint"
},
"dependencies": {
"fast-wrap-ansi": "^0.1.3",
"sisteransi": "^1.0.5"
},
"devDependencies": {
"vitest": "^3.2.4"
}
}
6 changes: 0 additions & 6 deletions packages/prompts/build.config.ts

This file was deleted.

9 changes: 4 additions & 5 deletions packages/prompts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,10 @@
],
"packageManager": "pnpm@9.14.2",
"scripts": {
"build": "unbuild",
"build": "bsh build",
"prepack": "pnpm build",
"test": "vitest run"
"test": "bsh test",
"lint": "bsh lint"
},
"dependencies": {
"@clack/core": "workspace:*",
Expand All @@ -60,8 +61,6 @@
},
"devDependencies": {
"is-unicode-supported": "^1.3.0",
"memfs": "^4.17.2",
"vitest": "^3.2.4",
"vitest-ansi-serializer": "^0.1.2"
"memfs": "^4.17.2"
}
}
Loading
Loading