Update dependencies

This commit is contained in:
Fabio Niephaus
2025-06-24 17:40:40 +02:00
committed by Fabio Niephaus
parent 01ed3ea8d4
commit 8ea6c1f538
3 changed files with 45 additions and 45 deletions

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

@@ -47559,7 +47559,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);
}

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

@@ -47559,7 +47559,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);
}