create-zenbu-app 0.0.28 → 0.0.29
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.mjs +1 -2
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1308,7 +1308,6 @@ async function runDesktopMode() {
|
|
|
1308
1308
|
log.info(`appsDir=${appsDir}`);
|
|
1309
1309
|
log.info(`logFile=${log.file}`);
|
|
1310
1310
|
try {
|
|
1311
|
-
p.log.step(`Scaffolding ${displayName}`);
|
|
1312
1311
|
if (desktopDryRun) log.info(`[dry-run] would scaffold template into ${appsDir}`);
|
|
1313
1312
|
else {
|
|
1314
1313
|
fs.mkdirSync(appsDir, { recursive: true });
|
|
@@ -1330,7 +1329,7 @@ async function runDesktopMode() {
|
|
|
1330
1329
|
}
|
|
1331
1330
|
let installed = false;
|
|
1332
1331
|
if (!noInstall && !desktopDryRun) {
|
|
1333
|
-
p.log.step(`Installing dependencies
|
|
1332
|
+
p.log.step(`Installing dependencies`);
|
|
1334
1333
|
log.info(`running ${pm.type} install in ${appsDir}`);
|
|
1335
1334
|
installed = runInstallSilent(appsDir, pm, log);
|
|
1336
1335
|
if (!installed) {
|