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 03c017b commit 848939cCopy full SHA for 848939c
package.json
@@ -42,10 +42,10 @@
42
"node": ">=14.17"
43
},
44
"scripts": {
45
- "prepare": "esno scripts/prepare.ts",
46
- "build": "unbuild",
47
- "stub": "unbuild --stub",
48
- "release": "release-it"
+ "prepare": "npx esno scripts/prepare.ts",
+ "build": "npx unbuild",
+ "stub": "npx unbuild --stub",
+ "release": "npx release-it"
49
50
"keywords": [
51
"CodeGenius",
src/command/npm-run.ts
@@ -14,7 +14,7 @@ export const npmRun = async (cwd = process.cwd()) => {
14
const scriptChoices = Object.keys(scripts).map((key) => {
15
return {
16
name: scripts[key],
17
- message: key,
+ message: `${key}`,
18
};
19
});
20
0 commit comments