zerozeeker 2.2.5 → 2.2.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/dist/index.js +0 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -301,16 +301,12 @@ async function autoFixSetup(projectRoot, needsTypeScript, needsTailwind, spinner
301
301
  `;
302
302
  const appDir = join(projectRoot, "app");
303
303
  const srcAppDir = join(projectRoot, "src", "app");
304
- let globalsCssDir;
305
304
  let globalsCssPath;
306
305
  if (existsSync(srcAppDir)) {
307
- globalsCssDir = srcAppDir;
308
306
  globalsCssPath = join(srcAppDir, "globals.css");
309
307
  } else if (existsSync(appDir)) {
310
- globalsCssDir = appDir;
311
308
  globalsCssPath = join(appDir, "globals.css");
312
309
  } else {
313
- globalsCssDir = appDir;
314
310
  globalsCssPath = join(appDir, "globals.css");
315
311
  mkdirSync(appDir, { recursive: true });
316
312
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zerozeeker",
3
- "version": "2.2.5",
3
+ "version": "2.2.6",
4
4
  "description": "Zero-config CLI for installing ZeroZeeker UI components. No shadcn required.",
5
5
  "type": "module",
6
6
  "bin": {