From 88d4ba36612e04298c39f0e10e364e864ca8cf4d Mon Sep 17 00:00:00 2001 From: Fernandez Ludovic Date: Mon, 16 Jun 2025 13:12:38 +0200 Subject: [PATCH] chore: generate --- dist/post_run/index.js | 2 +- dist/run/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/post_run/index.js b/dist/post_run/index.js index 4005a23..d463277 100644 --- a/dist/post_run/index.js +++ b/dist/post_run/index.js @@ -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); } diff --git a/dist/run/index.js b/dist/run/index.js index f3eef28..4603bb4 100644 --- a/dist/run/index.js +++ b/dist/run/index.js @@ -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); }