tailwind-styled-v4 5.0.20 → 5.0.21

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/dist/vite.js CHANGED
@@ -3074,7 +3074,11 @@ function extractStaticStateCss(srcDir, options = {}) {
3074
3074
  return result;
3075
3075
  }
3076
3076
  function appendStaticStateCssToSafelist(srcDir, safelistPath, options = {}) {
3077
- const result = extractStaticStateCss(srcDir, options);
3077
+ const result = extractStaticStateCss(srcDir, {
3078
+ verbose: options.verbose,
3079
+ resolvedCss: options.resolvedCss || ""
3080
+ // ← ensure always passed
3081
+ });
3078
3082
  const twClassesDir = path9__namespace.default.join(path9__namespace.default.dirname(safelistPath), "tw-classes");
3079
3083
  fs13__namespace.default.mkdirSync(twClassesDir, { recursive: true });
3080
3084
  const stateFilePath = path9__namespace.default.join(twClassesDir, TW_STATE_STATIC_FILENAME);