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.mjs CHANGED
@@ -3526,7 +3526,11 @@ function extractStaticStateCss(srcDir, options = {}) {
3526
3526
  return result;
3527
3527
  }
3528
3528
  function appendStaticStateCssToSafelist(srcDir, safelistPath, options = {}) {
3529
- const result = extractStaticStateCss(srcDir, options);
3529
+ const result = extractStaticStateCss(srcDir, {
3530
+ verbose: options.verbose,
3531
+ resolvedCss: options.resolvedCss || ""
3532
+ // ← ensure always passed
3533
+ });
3530
3534
  const twClassesDir = path9__default.join(path9__default.dirname(safelistPath), "tw-classes");
3531
3535
  fs3__default.mkdirSync(twClassesDir, { recursive: true });
3532
3536
  const stateFilePath = path9__default.join(twClassesDir, TW_STATE_STATIC_FILENAME);