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.mjs CHANGED
@@ -6806,11 +6806,11 @@ function computeSafelistSourcePath(cssFilePath, cwd2) {
6806
6806
  const safelistAbs = nodePath.resolve(cwd2, ".next", "tw-classes");
6807
6807
  const rel = nodePath.relative(cssDir, safelistAbs).replace(/\\/g, "/");
6808
6808
  const relPath = rel.startsWith(".") ? rel : `./${rel}`;
6809
- return `${relPath}/**`;
6809
+ return `${relPath}/[!_]*.css`;
6810
6810
  } catch {
6811
6811
  const depth = cssFilePath.split("/").length - 1;
6812
6812
  const ups = Array(depth).fill("..").join("/");
6813
- return `${ups}/.next/tw-classes/**`;
6813
+ return `${ups}/.next/tw-classes/[!_]*.css`;
6814
6814
  }
6815
6815
  }
6816
6816
  function computeStateStaticImportPath(cssFilePath, cwd2) {