chore: generate

This commit is contained in:
Fernandez Ludovic 2025-06-16 13:12:38 +02:00
parent 0ffadb12f5
commit 88d4ba3661
2 changed files with 2 additions and 2 deletions

2
dist/post_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);
}

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);
}