Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 17 additions & 8 deletions .github/local-actions/branch-manager/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -60573,13 +60573,13 @@ function createPrompt(view) {
rl.on("close", hooksCleanup);
cleanups.add(() => rl.removeListener("close", hooksCleanup));
cycle(() => {
var _a, _b;
var _a;
try {
const nextView = view(config2, (value) => {
setImmediate(() => resolve(value));
});
if (nextView === void 0) {
const callerFilename = (_b = (_a = callSites[1]) == null ? void 0 : _a.getFileName) == null ? void 0 : _b.call(_a);
const callerFilename = (_a = callSites[1]) == null ? void 0 : _a.getFileName();
throw new Error(`Prompt functions must return a string.
at ${callerFilename}`);
}
Expand Down Expand Up @@ -60665,14 +60665,17 @@ function normalizeChoices(choices) {
};
}
const name = choice.name ?? String(choice.value);
return {
const normalizedChoice = {
value: choice.value,
name,
short: choice.short ?? name,
description: choice.description,
disabled: choice.disabled ?? false,
checked: choice.checked ?? false
};
if (choice.description) {
normalizedChoice.description = choice.description;
}
return normalizedChoice;
});
}
var esm_default2 = createPrompt((config2, done) => {
Expand Down Expand Up @@ -61311,13 +61314,16 @@ function normalizeChoices4(choices) {
};
}
const name = choice.name ?? String(choice.value);
return {
const normalizedChoice = {
value: choice.value,
name,
description: choice.description,
short: choice.short ?? name,
disabled: choice.disabled ?? false
};
if (choice.description) {
normalizedChoice.description = choice.description;
}
return normalizedChoice;
});
}
var esm_default10 = createPrompt((config2, done) => {
Expand Down Expand Up @@ -61475,13 +61481,16 @@ function normalizeChoices5(choices) {
};
}
const name = choice.name ?? String(choice.value);
return {
const normalizedChoice = {
value: choice.value,
name,
description: choice.description,
short: choice.short ?? name,
disabled: choice.disabled ?? false
};
if (choice.description) {
normalizedChoice.description = choice.description;
}
return normalizedChoice;
});
}
var esm_default11 = createPrompt((config2, done) => {
Expand Down
2 changes: 1 addition & 1 deletion .github/ng-renovate/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"packageManager": "[email protected]",
"type": "commonjs",
"dependencies": {
"renovate": "39.232.3"
"renovate": "39.233.3"
}
}
20 changes: 10 additions & 10 deletions .github/ng-renovate/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2606,9 +2606,9 @@ __metadata:
languageName: node
linkType: hard

"@yarnpkg/core@npm:4.2.1":
version: 4.2.1
resolution: "@yarnpkg/core@npm:4.2.1"
"@yarnpkg/core@npm:4.3.0":
version: 4.3.0
resolution: "@yarnpkg/core@npm:4.3.0"
dependencies:
"@arcanis/slice-ansi": "npm:^1.1.1"
"@types/semver": "npm:^7.1.0"
Expand Down Expand Up @@ -2636,7 +2636,7 @@ __metadata:
treeify: "npm:^1.1.0"
tslib: "npm:^2.4.0"
tunnel: "npm:^0.0.6"
checksum: 10c0/6943450ea0955cffb71e64c0154ecb81721ce8e9a6b4575d357d26732e1c632b805b52d305fd09e55607d38fba169cc680ad84ff3ca48d23a146ccda0a0e1b5e
checksum: 10c0/db5fec40cdbdcd71866e2fd39d5540197f278a15077ba886867201c9f707f0e3ae314043d12da6ed690c5440939fa2c6ddb74fc3b3b2f24a02df350f3227b0ae
languageName: node
linkType: hard

Expand Down Expand Up @@ -5649,7 +5649,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "ng-renovate@workspace:."
dependencies:
renovate: "npm:39.232.3"
renovate: "npm:39.233.3"
languageName: unknown
linkType: soft

Expand Down Expand Up @@ -6408,9 +6408,9 @@ __metadata:
languageName: node
linkType: hard

"renovate@npm:39.232.3":
version: 39.232.3
resolution: "renovate@npm:39.232.3"
"renovate@npm:39.233.3":
version: 39.233.3
resolution: "renovate@npm:39.233.3"
dependencies:
"@aws-sdk/client-codecommit": "npm:3.777.0"
"@aws-sdk/client-ec2": "npm:3.779.0"
Expand Down Expand Up @@ -6440,7 +6440,7 @@ __metadata:
"@renovatebot/pep440": "npm:4.1.0"
"@renovatebot/ruby-semver": "npm:4.0.0"
"@sindresorhus/is": "npm:4.6.0"
"@yarnpkg/core": "npm:4.2.1"
"@yarnpkg/core": "npm:4.3.0"
"@yarnpkg/parsers": "npm:3.0.3"
agentkeepalive: "npm:4.6.0"
aggregate-error: "npm:3.1.0"
Expand Down Expand Up @@ -6537,7 +6537,7 @@ __metadata:
bin:
renovate: dist/renovate.js
renovate-config-validator: dist/config-validator.js
checksum: 10c0/9f936bef9d01d397f5b7d0025d2382b1ad44c80b56519bba0158cbc70e22e534ff90bed2f74ae7f411f08e38530e8d9ad623fa8dee39626d1c38eb6cfa0234e8
checksum: 10c0/c831e8f67061679688e1706c7f2ad53340740f10bd7cb8eea599bc39e27b7dcdb54a9255906c31c45b764bc3d2941867df956e2aa6da6dba00fa67802fdb7c5c
languageName: node
linkType: hard

Expand Down
6 changes: 3 additions & 3 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ nodejs_register_toolchains(

http_archive(
name = "aspect_rules_js",
sha256 = "05576ae674015b112b7c40c165735386eb9917affe8013e310d5602a093f2382",
strip_prefix = "rules_js-2.3.3",
url = "https://github.com/aspect-build/rules_js/releases/download/v2.3.3/rules_js-v2.3.3.tar.gz",
sha256 = "373e912bd986c38e54da82f15174984563866d14b60c5392e5b39e82b3bdf576",
strip_prefix = "rules_js-2.3.4",
url = "https://github.com/aspect-build/rules_js/releases/download/v2.3.4/rules_js-v2.3.4.tar.gz",
)

load("@aspect_rules_js//js:repositories.bzl", "rules_js_dependencies")
Expand Down
Loading