Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Publish to npm
runs-on: ubuntu-latest
permissions:
contents: read
contents: write # Needed to comment on release
id-token: write # Required for npm provenance

steps:
Expand Down
4 changes: 3 additions & 1 deletion build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ import { chmod } from 'node:fs/promises';
import { build } from 'bun';

// Build CLI entry point
// Note: No sourcemaps - CLI users don't need them, and it doubles package size
// For debugging, run TypeScript directly: bun run src/cli.ts
await build({
entrypoints: ['./src/cli.ts'],
format: 'esm',
minify: false,
outdir: './dist',
sourcemap: 'external',
sourcemap: 'none',
target: 'node',
});

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,5 +75,5 @@
"test:unit:watch": "bun test .unit. --watch"
},
"type": "module",
"version": "0.10.0"
"version": "0.11.0"
}