diff --git a/.changeset/honest-crews-go.md b/.changeset/honest-crews-go.md new file mode 100644 index 00000000..21f8c4c7 --- /dev/null +++ b/.changeset/honest-crews-go.md @@ -0,0 +1,5 @@ +--- +"@clack/prompts": patch +--- + +Fix mixed type-only and runtime exports from @clack/core. diff --git a/packages/prompts/src/index.ts b/packages/prompts/src/index.ts index e3a1671a..d12551b7 100644 --- a/packages/prompts/src/index.ts +++ b/packages/prompts/src/index.ts @@ -1,4 +1,5 @@ -export { type ClackSettings, isCancel, settings, updateSettings } from '@clack/core'; +export type { ClackSettings } from '@clack/core'; +export { isCancel, settings, updateSettings } from '@clack/core'; export * from './autocomplete.js'; export * from './box.js';