Skip to content

Commit 4cb9fee

Browse files
build(deps): Bump brace-expansion (#348)
* build(deps): Bump brace-expansion Bumps and [brace-expansion](https://github.com/juliangruber/brace-expansion). These dependencies needed to be updated together. Updates `brace-expansion` from 1.1.11 to 1.1.12 - [Release notes](https://github.com/juliangruber/brace-expansion/releases) - [Commits](juliangruber/brace-expansion@1.1.11...v1.1.12) Updates `brace-expansion` from 2.0.1 to 2.0.2 - [Release notes](https://github.com/juliangruber/brace-expansion/releases) - [Commits](juliangruber/brace-expansion@1.1.11...v1.1.12) --- updated-dependencies: - dependency-name: brace-expansion dependency-version: 1.1.12 dependency-type: indirect - dependency-name: brace-expansion dependency-version: 2.0.2 dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> * `npm run build` --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ben Drucker <[email protected]>
1 parent 481814e commit 4cb9fee

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15095,7 +15095,7 @@ function expand(str, isTop) {
1509515095
var isOptions = m.body.indexOf(',') >= 0;
1509615096
if (!isSequence && !isOptions) {
1509715097
// {a},b}
15098-
if (m.post.match(/,.*\}/)) {
15098+
if (m.post.match(/,(?!,).*\}/)) {
1509915099
str = m.pre + '{' + m.body + escClose + m.post;
1510015100
return expand(str);
1510115101
}

dist/post/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14195,7 +14195,7 @@ function expand(str, isTop) {
1419514195
var isOptions = m.body.indexOf(',') >= 0;
1419614196
if (!isSequence && !isOptions) {
1419714197
// {a},b}
14198-
if (m.post.match(/,.*\}/)) {
14198+
if (m.post.match(/,(?!,).*\}/)) {
1419914199
str = m.pre + '{' + m.body + escClose + m.post;
1420014200
return expand(str);
1420114201
}

package-lock.json

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)