aiteam-x 0.9.0 → 0.9.1
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/package.json +1 -1
- package/scripts/cli.mjs +1 -1
package/package.json
CHANGED
package/scripts/cli.mjs
CHANGED
|
@@ -129,7 +129,7 @@ async function main() {
|
|
|
129
129
|
const n = empty ? 2 : 3;
|
|
130
130
|
|
|
131
131
|
console.log(C.bold(`${n}. Instalando dependências...`));
|
|
132
|
-
execSync("npm install", { stdio: "inherit", cwd: absTarget });
|
|
132
|
+
execSync("npm install --legacy-peer-deps", { stdio: "inherit", cwd: absTarget });
|
|
133
133
|
console.log(C.green(" ✓ Dependências instaladas\n"));
|
|
134
134
|
|
|
135
135
|
console.log(C.bold(`${n + 1}. Executando wizard de configuração...`));
|