create-bw-app 0.5.0 → 0.6.0

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-bw-app",
3
3
  "private": false,
4
- "version": "0.5.0",
4
+ "version": "0.6.0",
5
5
  "type": "module",
6
6
  "bin": "bin/create-bw-app.mjs",
7
7
  "files": [
package/src/generator.mjs CHANGED
@@ -384,9 +384,11 @@ function createPackageJson({
384
384
  },
385
385
  dependencies: sortObjectKeys(dependencies),
386
386
  devDependencies: sortObjectKeys({
387
+ "@tailwindcss/postcss": versionMap["@tailwindcss/postcss"],
387
388
  "@types/node": versionMap["@types/node"],
388
389
  "@types/react": versionMap["@types/react"],
389
390
  "@types/react-dom": versionMap["@types/react-dom"],
391
+ tailwindcss: versionMap.tailwindcss,
390
392
  typescript: versionMap.typescript,
391
393
  }),
392
394
  };
@@ -1,3 +1,5 @@
1
+ @import "tailwindcss";
2
+
1
3
  :root {
2
4
  color-scheme: light;
3
5
  --font-sans: "IBM Plex Sans", "Segoe UI", sans-serif;
@@ -0,0 +1,7 @@
1
+ const config = {
2
+ plugins: {
3
+ "@tailwindcss/postcss": {},
4
+ },
5
+ };
6
+
7
+ export default config;