create-analog 1.0.0 → 1.0.1
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/index.js +4 -4
- package/package.json +1 -1
- package/files/postcss.config.js +0 -6
- package/files/tailwind.config.js +0 -8
package/index.js
CHANGED
|
@@ -333,15 +333,15 @@ function addTailwindDirectives(write, filesDir) {
|
|
|
333
333
|
|
|
334
334
|
function addPostCssConfig(write, filesDir) {
|
|
335
335
|
write(
|
|
336
|
-
'postcss.config.
|
|
337
|
-
fs.readFileSync(path.join(filesDir, `postcss.config.
|
|
336
|
+
'postcss.config.cjs',
|
|
337
|
+
fs.readFileSync(path.join(filesDir, `postcss.config.cjs`), 'utf-8')
|
|
338
338
|
);
|
|
339
339
|
}
|
|
340
340
|
|
|
341
341
|
function addTailwindConfig(write, filesDir) {
|
|
342
342
|
write(
|
|
343
|
-
'tailwind.config.
|
|
344
|
-
fs.readFileSync(path.join(filesDir, `tailwind.config.
|
|
343
|
+
'tailwind.config.cjs',
|
|
344
|
+
fs.readFileSync(path.join(filesDir, `tailwind.config.cjs`), 'utf-8')
|
|
345
345
|
);
|
|
346
346
|
}
|
|
347
347
|
|
package/package.json
CHANGED
package/files/postcss.config.js
DELETED