Skip to content
Merged
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
11 changes: 7 additions & 4 deletions .github/actions/deploy-docs-site/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -38533,6 +38533,7 @@ var require_range = __commonJS2({
return this.range;
}
parseRange(range) {
range = range.replace(BUILDSTRIPRE, "");
const memoOpts = (this.options.includePrerelease && FLAG_INCLUDE_PRERELEASE) | (this.options.loose && FLAG_LOOSE);
const memoKey = memoOpts + ":" + range;
const cached = cache.get(memoKey);
Expand Down Expand Up @@ -38615,12 +38616,14 @@ var require_range = __commonJS2({
var SemVer = require_semver();
var {
safeRe: re,
src,
t,
comparatorTrimReplace,
tildeTrimReplace,
caretTrimReplace
} = require_re();
var { FLAG_INCLUDE_PRERELEASE, FLAG_LOOSE } = require_constants6();
var BUILDSTRIPRE = new RegExp(src[t.BUILD], "g");
var isNullSet = (c) => c.value === "<0.0.0-0";
var isAny = (c) => c.value === "";
var isSatisfiable = (comparators, options) => {
Expand Down Expand Up @@ -39349,7 +39352,7 @@ var require_subset = __commonJS2({
if (higher === c && higher !== gt) {
return false;
}
} else if (gt.operator === ">=" && !satisfies(gt.semver, String(c), options)) {
} else if (gt.operator === ">=" && !c.test(gt.semver)) {
return false;
}
}
Expand All @@ -39364,7 +39367,7 @@ var require_subset = __commonJS2({
if (lower === c && lower !== lt) {
return false;
}
} else if (lt.operator === "<=" && !satisfies(lt.semver, String(c), options)) {
} else if (lt.operator === "<=" && !c.test(lt.semver)) {
return false;
}
}
Expand Down Expand Up @@ -51733,7 +51736,7 @@ content-type/dist/index.js:
(* v8 ignore next -- @preserve *)
(* v8 ignore else -- @preserve *)

@angular/ng-dev/bundles/chunk-2FS7LFXG.mjs:
@angular/ng-dev/bundles/chunk-NW2P6GIH.mjs:
(*! Bundled license information:

yargs-parser/build/lib/string-utils.js:
Expand Down Expand Up @@ -51774,7 +51777,7 @@ content-type/dist/index.js:
*)
*)

@angular/ng-dev/bundles/chunk-WBKY7U4X.mjs:
@angular/ng-dev/bundles/chunk-AXWYRMCM.mjs:
(*! Bundled license information:

content-type/dist/index.js:
Expand Down
8 changes: 4 additions & 4 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -18,28 +18,28 @@ bazel_dep(name = "yq.bzl", version = "0.3.6")
bazel_dep(name = "rules_angular")
git_override(
module_name = "rules_angular",
commit = "0ee3ac5f50d7dddc99a302b6453d74d5c6ff8eaf",
commit = "c83767475df06bdef16fd78c5667a1b49f411fd9",
remote = "https://github.com/angular/rules_angular.git",
)

bazel_dep(name = "devinfra")
git_override(
module_name = "devinfra",
commit = "6a613f2a8529185fda503da34fc4ddcab6967e7d",
commit = "7577392319a308e9e197271693ffab75fdd5b636",
remote = "https://github.com/angular/dev-infra.git",
)

bazel_dep(name = "rules_sass")
git_override(
module_name = "rules_sass",
commit = "4443f2a5babcbcf81ab1eddf5f57df15a2df6d06",
commit = "77d16f93b87e23ea38b0363d92d7fef5d1466269",
remote = "https://github.com/angular/rules_sass.git",
)

bazel_dep(name = "rules_browsers")
git_override(
module_name = "rules_browsers",
commit = "fe03af52b8b7471dc2965443dc8cb2e4a177db0b",
commit = "ee292750196e44296e3567a391762ebf58c3650c",
remote = "https://github.com/angular/rules_browsers.git",
)

Expand Down
47 changes: 24 additions & 23 deletions MODULE.bazel.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@
"devDependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#2606bcfbee9625f2c16e34c7a3ff43d8a82a08e5",
"@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#e858a8004a56ffb3b5e21af930522e0f74ebae35",
"@babel/plugin-transform-async-generator-functions": "^7.27.1",
"@bazel/bazelisk": "^1.7.5",
"@bazel/buildifier": "^8.0.0",
Expand Down
Loading
Loading