create-awarizon-app 1.0.2 → 1.0.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 +4 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -130,12 +130,12 @@ program.name("create-awarizon-app").description("Scaffold a new project with the
|
|
|
130
130
|
await processTemplate(dest, projectName, apiKey);
|
|
131
131
|
spinner2.stop("Template copied.");
|
|
132
132
|
if (!opts.skipInstall) {
|
|
133
|
-
|
|
133
|
+
p.log.step(`Installing dependencies with ${pm}\u2026`);
|
|
134
134
|
try {
|
|
135
|
-
execSync(installCmd(pm), { cwd: dest, stdio: "
|
|
136
|
-
|
|
135
|
+
execSync(installCmd(pm), { cwd: dest, stdio: "inherit" });
|
|
136
|
+
p.log.success("Dependencies installed.");
|
|
137
137
|
} catch {
|
|
138
|
-
|
|
138
|
+
p.log.warn("Install failed \u2014 run it manually.");
|
|
139
139
|
}
|
|
140
140
|
}
|
|
141
141
|
const langLabel = lang === "js" ? "JavaScript" : "TypeScript";
|