Skip to content

Commit

Permalink
fix: downgrade chalk for now
Browse files Browse the repository at this point in the history
  • Loading branch information
danadajian committed Jun 25, 2024
1 parent 34a1a44 commit d438c90
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Binary file modified bun.lockb
Binary file not shown.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "cypress-codegen",
"packageManager": "[email protected]",
"main": "dist/index.mjs",
"types": "dist/index.d.mts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"cypress-codegen": "dist/cli.mjs"
"cypress-codegen": "dist/cli.js"
},
"files": [
"dist",
Expand All @@ -24,7 +24,7 @@
"@babel/types": "7.24.7",
"@babel/generator": "7.24.7",
"@types/babel__generator": "7.6.8",
"chalk": "5.3.0",
"chalk": "4.1.2",
"commander": "12.1.0",
"glob": "10.4.2",
"prettier": "3.3.2"
Expand Down Expand Up @@ -52,7 +52,7 @@
"vite": "5.3.1"
},
"scripts": {
"build": "tsup src/index.ts src/cli.ts --clean --dts --format esm --splitting false",
"build": "tsup src/index.ts src/cli.ts --clean --dts --format cjs",
"cypress:open": "cypress open",
"cypress:component": "cypress run --component",
"cypress:e2e": "cypress run",
Expand Down
2 changes: 1 addition & 1 deletion src/cli.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env node

/* eslint-disable no-console */
import chalk from "chalk";
import * as chalk from "chalk";
import { program, Option } from "commander";
import { codegen } from "./codegen";

Expand Down

0 comments on commit d438c90

Please sign in to comment.