[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: use default import of picocolors (#341)

authored by

James Garbutt and committed by
GitHub
(Jun 3, 2025, 9:54 PM +0100) 17d36506 0ace1042

+6 -1
+5
.changeset/healthy-kings-play.md
··· 1 + --- 2 + "@clack/prompts": patch 3 + --- 4 + 5 + Use a default import for picocolors to avoid run time errors in some environments.
+1 -1
packages/prompts/src/task-log.ts
··· 1 1 import type { Writable } from 'node:stream'; 2 2 import { getColumns } from '@clack/core'; 3 - import * as color from 'picocolors'; 3 + import color from 'picocolors'; 4 4 import { erase } from 'sisteransi'; 5 5 import { type CommonOptions, S_BAR, S_STEP_SUBMIT, isCI as isCIFn } from './common.js'; 6 6 import { log } from './log.js';