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

Fix negative content patterns #5625

Merged
merged 2 commits into from
Sep 29, 2021
Merged

Fix negative content patterns #5625

merged 2 commits into from
Sep 29, 2021

Conversation

bradlc
Copy link
Contributor

@bradlc bradlc commented Sep 28, 2021

This PR implements a fix for negative content patterns, e.g.

module.exports = {
  content: [
    './src/**/*.html',
    '!./src/ignore-me.html',
  ],
}

This is achieved by removing the path.resolve call. This would turn an input like !file into /Users/me/project/!file which is incorrect.

For context, path.resolve was originally used to work around a bug in fast-glob which has since been resolved.

Additionally, negative patterns are skipped when registering PostCSS dependencies.

@bradlc bradlc merged commit 0b23d2e into master Sep 29, 2021
@bradlc bradlc deleted the negated-content branch September 29, 2021 10:15
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.

None yet

1 participant