[READ-ONLY] Mirror of https://github.com/bombshell-dev/clack. Effortlessly build beautiful command-line apps bomb.sh/docs/clack/basics/getting-started/
cli command-line command-line-app node prompt prompts
5

Configure Feed

Select the types of activity you want to include in your feed.

chore: remove sourcemaps & enable prettier output (#548)

authored by

James Garbutt and committed by
GitHub
(May 31, 2026, 7:59 AM -0500) 2356e97c 030ba4d7

+10 -2
+6
.changeset/great-rabbits-check.md
··· 1 + --- 2 + "@clack/core": patch 3 + "@clack/prompts": patch 4 + --- 5 + 6 + Remove sourcemaps and enable pretty-ish build output.
+4 -2
build.preset.ts
··· 4 4 export default definePreset({ 5 5 clean: true, 6 6 declaration: 'node16', 7 - sourcemap: true, 7 + sourcemap: false, 8 8 rollup: { 9 9 emitCJS: false, 10 10 inlineDependencies: true, 11 11 esbuild: { 12 - minify: true, 12 + minifySyntax: true, 13 + minifyIdentifiers: true, 14 + minifyWhitespace: false 13 15 }, 14 16 }, 15 17 });