tailwind-styled-v4 5.0.26 → 5.0.27

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/tw.js CHANGED
@@ -6832,11 +6832,11 @@ function computeSafelistSourcePath(cssFilePath, cwd2) {
6832
6832
  const safelistAbs = nodePath.resolve(cwd2, ".next", "tw-classes");
6833
6833
  const rel = nodePath.relative(cssDir, safelistAbs).replace(/\\/g, "/");
6834
6834
  const relPath = rel.startsWith(".") ? rel : `./${rel}`;
6835
- return `${relPath}/**`;
6835
+ return `${relPath}/[!_]*.css`;
6836
6836
  } catch {
6837
6837
  const depth = cssFilePath.split("/").length - 1;
6838
6838
  const ups = Array(depth).fill("..").join("/");
6839
- return `${ups}/.next/tw-classes/**`;
6839
+ return `${ups}/.next/tw-classes/[!_]*.css`;
6840
6840
  }
6841
6841
  }
6842
6842
  function computeStateStaticImportPath(cssFilePath, cwd2) {