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 CHANGED
@@ -333,15 +333,15 @@ function addTailwindDirectives(write, filesDir) {
333
333
 
334
334
  function addPostCssConfig(write, filesDir) {
335
335
  write(
336
- 'postcss.config.js',
337
- fs.readFileSync(path.join(filesDir, `postcss.config.js`), 'utf-8')
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.js',
344
- fs.readFileSync(path.join(filesDir, `tailwind.config.js`), 'utf-8')
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-analog",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "author": "Brandon Roberts",
@@ -1,6 +0,0 @@
1
- module.exports = {
2
- plugins: {
3
- tailwindcss: {},
4
- autoprefixer: {},
5
- },
6
- };
@@ -1,8 +0,0 @@
1
- /** @type {import('tailwindcss').Config} */
2
- module.exports = {
3
- content: ['./index.html', './src/**/*.{html,ts,md}'],
4
- theme: {
5
- extend: {},
6
- },
7
- plugins: [],
8
- };