vibe-now 1.0.4 → 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.
package/lib/packages.js CHANGED
@@ -53,6 +53,13 @@ export const PACKAGE_GROUPS = [
53
53
  default: true,
54
54
  guidance: 'Base components live in `components/ui/`. DO NOT modify them unless absolutely necessary for global design changes. Compose them in `components/` for feature-specific needs.',
55
55
  },
56
+ {
57
+ id: 'nextThemes',
58
+ name: 'next-themes (Dark Mode)',
59
+ install: ['next-themes'],
60
+ default: true,
61
+ guidance: 'Wrap the root layout with `ThemeProvider`. Use the `useTheme` hook to switch between dark, light, and system themes. Ensure `attribute="class"` is set for Tailwind support.',
62
+ },
56
63
  ],
57
64
  },
58
65
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibe-now",
3
- "version": "1.0.4",
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) {