Skip to content

Commit

Permalink
fix: downgrade to chalk v4
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-shuman committed May 20, 2022
1 parent 217b51b commit 2b5e0df
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 11 deletions.
51 changes: 47 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "unscript",
"version": "1.1.0",
"version": "1.1.1",
"description": "Run npm scripts using automatically shortened script names",
"author": "Jacob Shuman",
"license": "MIT",
Expand Down Expand Up @@ -32,15 +32,14 @@
"@types/node": "^17.0.31",
"@types/prompts": "^2.0.14",
"@vercel/ncc": "^0.33.4",
"chalk": "^5.0.1",
"chalk": "^4.1.2",
"commander": "^9.2.0",
"cross-spawn": "^7.0.3",
"prompts": "^2.4.2",
"rimraf": "^3.0.2",
"typescript": "^4.6.4"
},
"engines": {
"node": ">=14.19.2"
},
"dependencies": {}
"node": ">=10"
}
}
3 changes: 1 addition & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
#!/usr/bin/env node

import { Argument, program } from "commander";
import { program } from "commander";
import chalk from "chalk";
import packageJson from "../package.json";

import {
findScript,
getScripts,
Expand Down

0 comments on commit 2b5e0df

Please sign in to comment.