@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 +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +1 -1
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
|
-
|
|
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
|
-
|
|
679
|
+
// don't show output in console
|
|
680
|
+
stdio: "ignore"
|
|
680
681
|
});
|
|
681
682
|
console.log();
|
|
682
683
|
console.log(chalk3.green(successMessage));
|