brisa-tailwindcss 0.0.229 → 0.0.231

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/index.ts +8 -3
  2. package/package.json +3 -3
package/index.ts CHANGED
@@ -13,9 +13,14 @@ export default function brisaTailwindcss() {
13
13
  return transpiledContent.css.replaceAll(':root', ':root, :host');
14
14
  },
15
15
  defaultCSS: {
16
- content: '@tailwind base;\n@tailwind components;\n@tailwind utilities;',
17
- applyDefaultWhenEvery: (content: string) =>
18
- !content.includes('@tailwind'),
16
+ content: `
17
+ @tailwind base;
18
+ @tailwind components;
19
+ @tailwind utilities;
20
+ @import 'tailwindcss/preflight';
21
+ @import 'tailwindcss/theme';
22
+ `,
23
+ applyDefaultWhenEvery: (content: string) => !content.includes('tailwind'),
19
24
  },
20
25
  };
21
26
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "brisa-tailwindcss",
3
- "version": "0.0.229",
3
+ "version": "0.0.231",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "main": "./index.ts",
@@ -14,9 +14,9 @@
14
14
  },
15
15
  "files": ["index.ts", "index.d.ts"],
16
16
  "dependencies": {
17
- "@tailwindcss/postcss": "4.0.0-alpha.21",
17
+ "@tailwindcss/postcss": "4.0.0-alpha.25",
18
18
  "postcss": "8.4.47",
19
- "tailwindcss": "4.0.0-alpha.21"
19
+ "tailwindcss": "4.0.0-alpha.25"
20
20
  },
21
21
  "packageManager": "bun@1.1.30",
22
22
  "engines": {