[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.

fix: split type-only and runtime exports (#518)

authored by

じぇふり and committed by
GitHub
(Apr 26, 2026, 6:46 PM +0100) 5b897a72 cd7e5cdb

+7 -1
+5
.changeset/honest-crews-go.md
··· 1 + --- 2 + "@clack/prompts": patch 3 + --- 4 + 5 + Fix mixed type-only and runtime exports from @clack/core.
+2 -1
packages/prompts/src/index.ts
··· 1 - export { type ClackSettings, isCancel, settings, updateSettings } from '@clack/core'; 1 + export type { ClackSettings } from '@clack/core'; 2 + export { isCancel, settings, updateSettings } from '@clack/core'; 2 3 3 4 export * from './autocomplete.js'; 4 5 export * from './box.js';