Skip to content

Commit 1d083c1

Browse files
committed
refactor: remove picocolors dependency and integrate color from rslog
1 parent 3176cac commit 1d083c1

3 files changed

Lines changed: 2 additions & 12 deletions

File tree

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@
5454
"deepmerge": "^4.3.1",
5555
"fs-extra": "^11.3.4",
5656
"minimist": "^1.2.8",
57-
"picocolors": "^1.1.1",
5857
"rimraf": "^6.1.3",
5958
"rslog": "^2.1.0",
6059
"simple-git-hooks": "^2.13.1",

pnpm-lock.yaml

Lines changed: 0 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/index.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,12 @@ import { determineAgent } from '@vercel/detect-agent';
1414
import spawn from 'cross-spawn';
1515
import deepmerge from 'deepmerge';
1616
import minimist from 'minimist';
17-
import color from 'picocolors';
18-
import { logger } from 'rslog';
17+
import { color, logger } from 'rslog';
1918

2019
const __filename = fileURLToPath(import.meta.url);
2120
const __dirname = dirname(__filename);
2221

23-
export { select, multiselect, text };
22+
export { multiselect, select, text };
2423

2524
function cancelAndExit() {
2625
cancel('Operation cancelled.');

0 commit comments

Comments
 (0)