chore: generate

This commit is contained in:
Fernandez Ludovic 2026-02-25 01:48:08 +01:00
parent 88ee8a195b
commit c688d3fd26
2 changed files with 6 additions and 0 deletions

3
dist/post_run/index.js generated vendored
View file

@ -26482,6 +26482,9 @@ function parse (pattern, isSub) {
continue continue
} }
// coalesce consecutive non-globstar * characters
if (c === '*' && stateChar === '*') continue
// if we already have a stateChar, then it means // if we already have a stateChar, then it means
// that there was something like ** or +? in there. // that there was something like ** or +? in there.
// Handle the stateChar, then proceed with this one. // Handle the stateChar, then proceed with this one.

3
dist/run/index.js generated vendored
View file

@ -26482,6 +26482,9 @@ function parse (pattern, isSub) {
continue continue
} }
// coalesce consecutive non-globstar * characters
if (c === '*' && stateChar === '*') continue
// if we already have a stateChar, then it means // if we already have a stateChar, then it means
// that there was something like ** or +? in there. // that there was something like ** or +? in there.
// Handle the stateChar, then proceed with this one. // Handle the stateChar, then proceed with this one.