Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update class regex #119

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Update class regex #119

wants to merge 1 commit into from

Conversation

5need
Copy link

@5need 5need commented Mar 5, 2025

Changes the regex that selects classes in a css file to ignore any leading whitespace.

This is useful for when you have whitespace before a class declaration, like a @layer directive.

Before, using ^(\.[^\s]+)[ ]

// output.css
@layer utilities {
  .visible { // ❌ does not match .visible due to leading whitespace :-(
    visibility: visible;
  }
}

After, using ^\s*(\.[^\s]+)[ ] instead

// output.css
@layer utilities {
  .visible { // ✅ matches!
    visibility: visible;
  }
}

Ignores whitespace before the class declaration in a css file.
@praveenperera
Copy link
Member

Makes sense do you mind adding a few tests, that show this @5need thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants