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.
@@ -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.9",
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
- return start(["npx", ...args]);
609
+ console.log(`[installing and running: npx ${args.join(" ")}]`);
610
+ return start(["npx", "--yes", ...args]);
610
611
  }
611
612
  }
612
613
  main().catch((err) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "noninteractive",
3
- "version": "0.3.9",
3
+ "version": "0.3.10",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "noninteractive": "./bin/noninteractive.js"