bmad-fh 6.0.0-alpha.23.6fbcf839 → 6.0.0-alpha.23.96db56c9

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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "bmad-fh",
4
- "version": "6.0.0-alpha.23.6fbcf839",
4
+ "version": "6.0.0-alpha.23.96db56c9",
5
5
  "description": "Breakthrough Method of Agile AI-driven Development",
6
6
  "keywords": [
7
7
  "agile",
@@ -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 --production --ignore-scripts --no-audit --no-fund --prefer-offline --no-progress', {
419
+ execSync('npm install --omit=dev --ignore-scripts --no-package-lock --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 --production --ignore-scripts --no-audit --no-fund --prefer-offline --no-progress', {
444
+ execSync('npm install --omit=dev --ignore-scripts --no-package-lock --no-audit --no-fund --prefer-offline --no-progress', {
445
445
  cwd: moduleCacheDir,
446
446
  stdio: 'pipe',
447
447
  timeout: 120_000, // 2 minute timeout