vibe-now 1.0.5 → 1.0.6

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/plopfile.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibe-now",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "main": "index.js",
5
5
  "type": "module",
6
6
  "bin": {
package/plopfile.js CHANGED
@@ -111,13 +111,13 @@ export default function (plop) {
111
111
  try {
112
112
  // Standard Installs
113
113
  if (installCmds.length > 0) {
114
- await execa('npm', ['install', ...installCmds], { cwd: projectPath });
114
+ await execa('npm', ['install', '--legacy-peer-deps', ...installCmds], { cwd: projectPath });
115
115
  }
116
116
 
117
117
  // Dev Installs
118
118
  if (devInstallCmds.length > 0) {
119
119
  installSpinner.text = 'Installing devDependencies...';
120
- await execa('npm', ['install', '-D', ...devInstallCmds], { cwd: projectPath });
120
+ await execa('npm', ['install', '-D', '--legacy-peer-deps', ...devInstallCmds], { cwd: projectPath });
121
121
  }
122
122
  installSpinner.succeed('Packages installed successfully!');
123
123
  } catch (error) {