-
-
Notifications
You must be signed in to change notification settings - Fork 215
chore: migration to @bomb.sh/tools #604
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
70240c1
6cc832e
7ebf515
19dc689
2392804
2f71683
168c1c5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,4 @@ | ||
| # macOS | ||
| .DS_Store | ||
|
|
||
| # Logs | ||
|
|
||
This file was deleted.
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,15 +1,14 @@ | ||
| { | ||
| "name": "@example/changesets", | ||
| "private": true, | ||
| "version": "0.0.0", | ||
| "type": "module", | ||
| "dependencies": { | ||
| "jiti": "^1.17.0", | ||
| "@clack/prompts": "workspace:*", | ||
| "picocolors": "^1.0.0" | ||
| }, | ||
| "private": true, | ||
| "scripts": { | ||
| "start": "jiti ./index.ts" | ||
| }, | ||
| "devDependencies": {} | ||
| "dependencies": { | ||
| "@clack/prompts": "workspace:*", | ||
| "jiti": "^1.17.0", | ||
| "picocolors": "^1.0.0" | ||
| } | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,5 @@ | ||
| { | ||
| "workspaces": { | ||
| ".": { | ||
| "ignore": ["build.preset.ts"] | ||
| }, | ||
| "examples/*": { | ||
| "entry": "*.ts!", | ||
| "project": "*.ts" | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,28 +1,26 @@ | ||
| { | ||
| "name": "@clack/root", | ||
| "private": true, | ||
| "type": "module", | ||
| "private": true, | ||
| "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", | ||
| "format": "bsh format", | ||
| "lint": "bsh lint", | ||
| "types": "tsc --noEmit", | ||
| "deps": "pnpm exec knip --production", | ||
| "test": "pnpm --color -r run test", | ||
| "deps": "pnpm dlx knip --production", | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There is a workflow that explicitly uses the deps script. It can be removed! Running
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. agree it can't be |
||
| "test": "bsh test", | ||
| "pretest": "pnpm run build" | ||
| }, | ||
| "devDependencies": { | ||
| "@biomejs/biome": "^2.5.12", | ||
| "@bomb.sh/tools": "^0.6.1", | ||
| "@changesets/changelog-github": "^0.7.0", | ||
| "@changesets/cli": "^2.31.0", | ||
| "@types/node": "^20.19.39", | ||
| "jsr": "^0.13.4", | ||
| "knip": "^5.62.0", | ||
| "typescript": "^6.0.3", | ||
| "unbuild": "^3.6.0" | ||
| "typescript": "^6.0.3" | ||
| }, | ||
| "packageManager": "pnpm@10.33.0", | ||
| "volta": { | ||
|
|
||
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -50,9 +50,9 @@ | |
| "node": ">= 20.12.0" | ||
| }, | ||
| "scripts": { | ||
| "build": "unbuild", | ||
| "build": "bsh build", | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. building prompts writes 38 untracked |
||
| "prepack": "pnpm build", | ||
| "test": "vitest run" | ||
| "test": "bsh test" | ||
| }, | ||
| "dependencies": { | ||
| "@clack/core": "workspace:*", | ||
|
|
@@ -63,7 +63,7 @@ | |
| "devDependencies": { | ||
| "is-unicode-supported": "^1.3.0", | ||
| "memfs": "^4.17.2", | ||
| "vitest": "^3.2.4", | ||
| "vitest-ansi-serializer": "^0.1.2" | ||
| "vitest": "^5.0.0", | ||
| "vitest-ansi-serializer": "^0.3.1" | ||
| } | ||
| } | ||
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
heads up that once this merges the format workflow runs bsh format on main and auto-commits the result.
bsh format --checkflags 67 files here, including src, tests, the workflow yaml andCONTRIBUTING.md. theignorePatternsin tools' oxfmt config resolve relative to that config's own folder, so they don't cover our md/yml/json. could we run it in this pr so the reformat gets reviewed?