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/engine.js CHANGED
@@ -3548,7 +3548,11 @@ function extractStaticStateCss(srcDir, options = {}) {
3548
3548
  return result;
3549
3549
  }
3550
3550
  function appendStaticStateCssToSafelist(srcDir, safelistPath, options = {}) {
3551
- const result = extractStaticStateCss(srcDir, options);
3551
+ const result = extractStaticStateCss(srcDir, {
3552
+ verbose: options.verbose,
3553
+ resolvedCss: options.resolvedCss || ""
3554
+ // ← ensure always passed
3555
+ });
3552
3556
  const twClassesDir = path9__namespace.default.join(path9__namespace.default.dirname(safelistPath), "tw-classes");
3553
3557
  fs3__namespace.default.mkdirSync(twClassesDir, { recursive: true });
3554
3558
  const stateFilePath = path9__namespace.default.join(twClassesDir, TW_STATE_STATIC_FILENAME);