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.
- package/dist/index.js +0 -4
- 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
|
}
|