@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.
Files changed (2) hide show
  1. package/index.ts +6 -6
  2. 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: string;
18
- tailwindcss: string;
19
- lightningcss: string;
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
- filename: "input.css",
131
- code: new TextEncoder().encode(css)
132
- }).code;
130
+ filename: "input.css",
131
+ code: new TextEncoder().encode(css)
132
+ }).code;
133
133
 
134
134
  return typeof result === "string"
135
135
  ? result
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fullstacked/tailwindcss",
3
- "version": "4.3.2-patch.0",
3
+ "version": "4.3.2-patch.1",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build": "esbuild --outfile=index.js index.ts"