@create-node-app/core 0.3.2 → 0.3.3

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/dist/index.js CHANGED
@@ -705,7 +705,8 @@ var runCommandInProjectDir = async (root, command, args = [], successMessage = "
705
705
  try {
706
706
  (0, import_child_process3.execSync)(`${command} ${args.join(" ")}`, {
707
707
  cwd: root,
708
- stdio: "inherit"
708
+ // don't show output in console
709
+ stdio: "ignore"
709
710
  });
710
711
  console.log();
711
712
  console.log(import_chalk3.default.green(successMessage));
package/dist/index.mjs CHANGED
@@ -676,7 +676,8 @@ var runCommandInProjectDir = async (root, command, args = [], successMessage = "
676
676
  try {
677
677
  execSync2(`${command} ${args.join(" ")}`, {
678
678
  cwd: root,
679
- stdio: "inherit"
679
+ // don't show output in console
680
+ stdio: "ignore"
680
681
  });
681
682
  console.log();
682
683
  console.log(chalk3.green(successMessage));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@create-node-app/core",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",