@fullstacked/tailwindcss 4.3.2-patch.0 → 4.3.2-patch.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.ts +6 -6
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -14,9 +14,9 @@ let init: {
|
|
|
14
14
|
let initPromise: Promise<void> = null;
|
|
15
15
|
|
|
16
16
|
type InitializeOpts = {
|
|
17
|
-
oxide
|
|
18
|
-
tailwindcss
|
|
19
|
-
lightningcss
|
|
17
|
+
oxide?: string;
|
|
18
|
+
tailwindcss?: string;
|
|
19
|
+
lightningcss?: string;
|
|
20
20
|
baseDirectory?: string;
|
|
21
21
|
skipLightning?: boolean;
|
|
22
22
|
};
|
|
@@ -127,9 +127,9 @@ async function compileTailwind(
|
|
|
127
127
|
const result = init.skipLightning
|
|
128
128
|
? css
|
|
129
129
|
: transform({
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
130
|
+
filename: "input.css",
|
|
131
|
+
code: new TextEncoder().encode(css)
|
|
132
|
+
}).code;
|
|
133
133
|
|
|
134
134
|
return typeof result === "string"
|
|
135
135
|
? result
|