We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e48feff commit 02bb471Copy full SHA for 02bb471
src/command/npm-run.ts
@@ -8,7 +8,6 @@ export const npmRun = async (cwd = process.cwd()) => {
8
const pkgContent = await fs.readFile(root, { encoding: "utf-8" });
9
const scripts = JSON.parse(pkgContent)?.scripts;
10
const scriptChoices = Object.keys(scripts).map((key) => {
11
- console.log(key, scripts[key]);
12
return {
13
name: scripts[key],
14
message: key,
0 commit comments