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