noninteractive 0.3.9 → 0.3.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/noninteractive.js +3 -2
- package/package.json +1 -1
package/bin/noninteractive.js
CHANGED
|
@@ -243,7 +243,7 @@ var init_daemon = __esm(() => {
|
|
|
243
243
|
var require_package = __commonJS((exports, module) => {
|
|
244
244
|
module.exports = {
|
|
245
245
|
name: "noninteractive",
|
|
246
|
-
version: "0.3.
|
|
246
|
+
version: "0.3.10",
|
|
247
247
|
type: "module",
|
|
248
248
|
bin: {
|
|
249
249
|
noninteractive: "./bin/noninteractive.js"
|
|
@@ -606,7 +606,8 @@ example: npx noninteractive stop vercel`);
|
|
|
606
606
|
console.log(HELP);
|
|
607
607
|
break;
|
|
608
608
|
default:
|
|
609
|
-
|
|
609
|
+
console.log(`[installing and running: npx ${args.join(" ")}]`);
|
|
610
|
+
return start(["npx", "--yes", ...args]);
|
|
610
611
|
}
|
|
611
612
|
}
|
|
612
613
|
main().catch((err) => {
|