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

allow globs for denyImports and denyFiles #29

Merged
merged 1 commit into from
May 19, 2024
Merged

allow globs for denyImports and denyFiles #29

merged 1 commit into from
May 19, 2024

Conversation

pcattori
Copy link
Owner

No description provided.

Copy link

changeset-bot bot commented May 19, 2024

🦋 Changeset detected

Latest commit: 25a324d

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package
Name Type
vite-env-only Minor

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR


Allow globs for `denyImports` and `denyFiles`

Using [micromatch][https://github.com/micromatch/micromatch] for pattern matching
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Out of curiosity, why'd you go with this library?

Copy link
Owner Author

@pcattori pcattori May 19, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Vite uses fast-glob, and fast-glob uses micromatch. It's one of the reasons fast-glob is faster than glob.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-glob uses micromatch

Ah nice, I was missing this context 👍

@@ -25,7 +27,7 @@ export function validateId({

for (const pattern of patterns) {
if (
(typeof pattern === "string" && id === pattern) ||
(typeof pattern === "string" && isMatch(id, pattern)) ||
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Love how simple this change is!

@pcattori pcattori merged commit 17f2d17 into main May 19, 2024
4 checks passed
@pcattori pcattori deleted the deny-glob branch May 19, 2024 20:54
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