You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Similar with GNU Make, I noticed that knit.glob() also doesn't support globstar and extglob too (e.g path/**/mangle-*.jsonc?). Is it intentional by design?
The text was updated successfully, but these errors were encountered:
I'm not opposed to including support for this, I think the glob library I'm using just doesn't support it fully. Maybe this library would support the types of patterns you want? https://github.com/bmatcuk/doublestar. I can look into replacing the current glob usage to use that library instead.
Looks good to me as long as knit script enforce UNIX style path. Path separator must always be / instead of \ since that library will disable escaping if it's on Windows.
Similar with GNU Make, I noticed that
knit.glob()
also doesn't support globstar and extglob too (e.gpath/**/mangle-*.jsonc?
). Is it intentional by design?The text was updated successfully, but these errors were encountered: