build(deps): bump brace-expansion from 1.1.11 to 1.1.12 (#1252)

Co-authored-by: Fernandez Ludovic <ldez@users.noreply.github.com>
This commit is contained in:
dependabot[bot]
2025-06-16 13:19:50 +02:00
committed by GitHub
parent a33ebd7321
commit dee96aca05
3 changed files with 6 additions and 5 deletions

2
dist/run/index.js generated vendored
View File

@@ -54566,7 +54566,7 @@ function expand(str, isTop) {
var isOptions = m.body.indexOf(',') >= 0;
if (!isSequence && !isOptions) {
// {a},b}
if (m.post.match(/,.*\}/)) {
if (m.post.match(/,(?!,).*\}/)) {
str = m.pre + '{' + m.body + escClose + m.post;
return expand(str);
}