Simplify PR check by reverting changes to @types/node.

This commit is contained in:
Mario Campos
2025-10-02 13:46:44 -05:00
parent d899b2ed98
commit 54ae8ba5b1
16 changed files with 37 additions and 77 deletions

4
lib/upload-lib.js generated
View File

@@ -33646,7 +33646,7 @@ var require_package = __commonJS({
"@types/console-log-level": "^1.4.5",
"@types/follow-redirects": "^1.14.4",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.5.2",
"@types/node": "20.19.9",
"@types/node-forge": "^1.3.14",
"@types/semver": "^7.7.1",
"@types/sinon": "^17.0.4",
@@ -35688,7 +35688,7 @@ var require_brace_expansion = __commonJS({
var isSequence = isNumericSequence || isAlphaSequence;
var isOptions = m.body.indexOf(",") >= 0;
if (!isSequence && !isOptions) {
if (m.post.match(/,.*\}/)) {
if (m.post.match(/,(?!,).*\}/)) {
str2 = m.pre + "{" + m.body + escClose + m.post;
return expand(str2);
}