bmad-fh 6.0.0-alpha.23.96db56c9 → 6.0.0-alpha.23.e3cc6827
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
CHANGED
|
@@ -416,7 +416,7 @@ class ModuleManager {
|
|
|
416
416
|
if (needsDependencyInstall || wasNewClone || nodeModulesMissing) {
|
|
417
417
|
const installSpinner = ora(`Installing dependencies for ${moduleInfo.name}...`).start();
|
|
418
418
|
try {
|
|
419
|
-
execSync('npm install --
|
|
419
|
+
execSync('npm install --production --ignore-scripts --no-audit --no-fund --prefer-offline --no-progress', {
|
|
420
420
|
cwd: moduleCacheDir,
|
|
421
421
|
stdio: 'pipe',
|
|
422
422
|
timeout: 120_000, // 2 minute timeout
|
|
@@ -441,7 +441,7 @@ class ModuleManager {
|
|
|
441
441
|
if (packageJsonNewer) {
|
|
442
442
|
const installSpinner = ora(`Installing dependencies for ${moduleInfo.name}...`).start();
|
|
443
443
|
try {
|
|
444
|
-
execSync('npm install --
|
|
444
|
+
execSync('npm install --production --ignore-scripts --no-audit --no-fund --prefer-offline --no-progress', {
|
|
445
445
|
cwd: moduleCacheDir,
|
|
446
446
|
stdio: 'pipe',
|
|
447
447
|
timeout: 120_000, // 2 minute timeout
|