From c688d3fd265b5ecc7b17e98b2de0ffcf083ff019 Mon Sep 17 00:00:00 2001 From: Fernandez Ludovic Date: Wed, 25 Feb 2026 01:48:08 +0100 Subject: [PATCH] chore: generate --- dist/post_run/index.js | 3 +++ dist/run/index.js | 3 +++ 2 files changed, 6 insertions(+) diff --git a/dist/post_run/index.js b/dist/post_run/index.js index 634702e..dc689b1 100644 --- a/dist/post_run/index.js +++ b/dist/post_run/index.js @@ -26482,6 +26482,9 @@ function parse (pattern, isSub) { continue } + // coalesce consecutive non-globstar * characters + if (c === '*' && stateChar === '*') continue + // if we already have a stateChar, then it means // that there was something like ** or +? in there. // Handle the stateChar, then proceed with this one. diff --git a/dist/run/index.js b/dist/run/index.js index e043c8f..caf15d3 100644 --- a/dist/run/index.js +++ b/dist/run/index.js @@ -26482,6 +26482,9 @@ function parse (pattern, isSub) { continue } + // coalesce consecutive non-globstar * characters + if (c === '*' && stateChar === '*') continue + // if we already have a stateChar, then it means // that there was something like ** or +? in there. // Handle the stateChar, then proceed with this one.