mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
build: update cross-repo angular dependencies
See associated pull request for more information.
This commit is contained in:
parent
b70515cada
commit
6ff3256b90
6 changed files with 673 additions and 680 deletions
368
.github/actions/deploy-docs-site/main.js
vendored
368
.github/actions/deploy-docs-site/main.js
vendored
|
|
@ -37486,98 +37486,134 @@ import { spawnSync as spawnSync2 } from "child_process";
|
|||
import { URL as URL2 } from "url";
|
||||
var import_lockfile = __toESM(require_lockfile(), 1);
|
||||
var require5 = __cjsCompatRequire_ngDev4(import.meta.url);
|
||||
var require_fast_content_type_parse = __commonJS2({
|
||||
""(exports, module) {
|
||||
var require_dist2 = __commonJS2({
|
||||
""(exports) {
|
||||
"use strict";
|
||||
var NullObject = function NullObject2() {
|
||||
};
|
||||
NullObject.prototype = /* @__PURE__ */ Object.create(null);
|
||||
var paramRE = /; *([!#$%&'*+.^\w`|~-]+)=("(?:[\v\u0020\u0021\u0023-\u005b\u005d-\u007e\u0080-\u00ff]|\\[\v\u0020-\u00ff])*"|[!#$%&'*+.^\w`|~-]+) */gu;
|
||||
var quotedPairRE = /\\([\v\u0020-\u00ff])/gu;
|
||||
var mediaTypeRE = /^[!#$%&'*+.^\w|~-]+\/[!#$%&'*+.^\w|~-]+$/u;
|
||||
var defaultContentType = { type: "", parameters: new NullObject() };
|
||||
Object.freeze(defaultContentType.parameters);
|
||||
Object.freeze(defaultContentType);
|
||||
function parse22(header) {
|
||||
if (typeof header !== "string") {
|
||||
throw new TypeError("argument header is required and must be a string");
|
||||
}
|
||||
let index = header.indexOf(";");
|
||||
const type = index !== -1 ? header.slice(0, index).trim() : header.trim();
|
||||
if (mediaTypeRE.test(type) === false) {
|
||||
throw new TypeError("invalid media type");
|
||||
}
|
||||
const result = {
|
||||
type: type.toLowerCase(),
|
||||
parameters: new NullObject()
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.format = format3;
|
||||
exports.parse = parse32;
|
||||
var TEXT_REGEXP = /^[\u0009\u0020-\u007e\u0080-\u00ff]*$/;
|
||||
var TOKEN_REGEXP = /^[!#$%&'*+.^_`|~0-9A-Za-z-]+$/;
|
||||
var QUOTE_REGEXP = /[\\"]/g;
|
||||
var TYPE_REGEXP = /^[!#$%&'*+.^_`|~0-9A-Za-z-]+\/[!#$%&'*+.^_`|~0-9A-Za-z-]+$/;
|
||||
var NullObject = (() => {
|
||||
const C = function() {
|
||||
};
|
||||
if (index === -1) {
|
||||
return result;
|
||||
C.prototype = /* @__PURE__ */ Object.create(null);
|
||||
return C;
|
||||
})();
|
||||
function format3(obj) {
|
||||
const { type, parameters } = obj;
|
||||
if (!type || !TYPE_REGEXP.test(type)) {
|
||||
throw new TypeError(`Invalid type: ${type}`);
|
||||
}
|
||||
let key;
|
||||
let match;
|
||||
let value;
|
||||
paramRE.lastIndex = index;
|
||||
while (match = paramRE.exec(header)) {
|
||||
if (match.index !== index) {
|
||||
throw new TypeError("invalid parameter format");
|
||||
let result = type;
|
||||
if (parameters) {
|
||||
for (const param of Object.keys(parameters)) {
|
||||
if (!TOKEN_REGEXP.test(param)) {
|
||||
throw new TypeError(`Invalid parameter name: ${param}`);
|
||||
}
|
||||
result += `; ${param}=${qstring(parameters[param])}`;
|
||||
}
|
||||
index += match[0].length;
|
||||
key = match[1].toLowerCase();
|
||||
value = match[2];
|
||||
if (value[0] === '"') {
|
||||
value = value.slice(1, value.length - 1);
|
||||
quotedPairRE.test(value) && (value = value.replace(quotedPairRE, "$1"));
|
||||
}
|
||||
result.parameters[key] = value;
|
||||
}
|
||||
if (index !== header.length) {
|
||||
throw new TypeError("invalid parameter format");
|
||||
}
|
||||
return result;
|
||||
}
|
||||
function safeParse2(header) {
|
||||
if (typeof header !== "string") {
|
||||
return defaultContentType;
|
||||
}
|
||||
let index = header.indexOf(";");
|
||||
const type = index !== -1 ? header.slice(0, index).trim() : header.trim();
|
||||
if (mediaTypeRE.test(type) === false) {
|
||||
return defaultContentType;
|
||||
}
|
||||
const result = {
|
||||
type: type.toLowerCase(),
|
||||
parameters: new NullObject()
|
||||
};
|
||||
if (index === -1) {
|
||||
return result;
|
||||
}
|
||||
let key;
|
||||
let match;
|
||||
let value;
|
||||
paramRE.lastIndex = index;
|
||||
while (match = paramRE.exec(header)) {
|
||||
if (match.index !== index) {
|
||||
return defaultContentType;
|
||||
}
|
||||
index += match[0].length;
|
||||
key = match[1].toLowerCase();
|
||||
value = match[2];
|
||||
if (value[0] === '"') {
|
||||
value = value.slice(1, value.length - 1);
|
||||
quotedPairRE.test(value) && (value = value.replace(quotedPairRE, "$1"));
|
||||
}
|
||||
result.parameters[key] = value;
|
||||
}
|
||||
if (index !== header.length) {
|
||||
return defaultContentType;
|
||||
}
|
||||
return result;
|
||||
function parse32(header, options) {
|
||||
const len = header.length;
|
||||
let index = skipOWS(header, 0, len);
|
||||
const valueStart = index;
|
||||
index = skipValue(header, index, len);
|
||||
const valueEnd = trailingOWS(header, valueStart, index);
|
||||
const type = header.slice(valueStart, valueEnd).toLowerCase();
|
||||
const parameters = options?.parameters === false ? new NullObject() : parseParameters(header, index, len);
|
||||
return { type, parameters };
|
||||
}
|
||||
var SP = 32;
|
||||
var HTAB = 9;
|
||||
var SEMI = 59;
|
||||
var EQ = 61;
|
||||
var DQUOTE = 34;
|
||||
var BSLASH = 92;
|
||||
function parseParameters(header, index, len) {
|
||||
const parameters = new NullObject();
|
||||
parameter:
|
||||
while (index < len) {
|
||||
index = skipOWS(header, index + 1, len);
|
||||
const keyStart = index;
|
||||
while (index < len) {
|
||||
const code = header.charCodeAt(index);
|
||||
if (code === SEMI)
|
||||
continue parameter;
|
||||
if (code === EQ) {
|
||||
const keyEnd = trailingOWS(header, keyStart, index);
|
||||
const key = header.slice(keyStart, keyEnd).toLowerCase();
|
||||
index = skipOWS(header, index + 1, len);
|
||||
if (index < len && header.charCodeAt(index) === DQUOTE) {
|
||||
index++;
|
||||
let value = "";
|
||||
while (index < len) {
|
||||
const code2 = header.charCodeAt(index++);
|
||||
if (code2 === DQUOTE) {
|
||||
index = skipValue(header, index, len);
|
||||
if (parameters[key] === void 0)
|
||||
parameters[key] = value;
|
||||
break;
|
||||
}
|
||||
if (code2 === BSLASH && index < len) {
|
||||
value += header[index++];
|
||||
continue;
|
||||
}
|
||||
value += String.fromCharCode(code2);
|
||||
}
|
||||
continue parameter;
|
||||
}
|
||||
const valueStart = index;
|
||||
index = skipValue(header, index, len);
|
||||
if (parameters[key] === void 0) {
|
||||
const valueEnd = trailingOWS(header, valueStart, index);
|
||||
parameters[key] = header.slice(valueStart, valueEnd);
|
||||
}
|
||||
continue parameter;
|
||||
}
|
||||
index++;
|
||||
}
|
||||
}
|
||||
return parameters;
|
||||
}
|
||||
function skipValue(str, index, len) {
|
||||
while (index < len) {
|
||||
const char = str.charCodeAt(index);
|
||||
if (char === SEMI)
|
||||
break;
|
||||
index++;
|
||||
}
|
||||
return index;
|
||||
}
|
||||
function skipOWS(header, index, len) {
|
||||
while (index < len) {
|
||||
const char = header.charCodeAt(index);
|
||||
if (char !== SP && char !== HTAB)
|
||||
break;
|
||||
index++;
|
||||
}
|
||||
return index;
|
||||
}
|
||||
function trailingOWS(header, start, end) {
|
||||
while (end > start) {
|
||||
const char = header.charCodeAt(end - 1);
|
||||
if (char !== SP && char !== HTAB)
|
||||
break;
|
||||
end--;
|
||||
}
|
||||
return end;
|
||||
}
|
||||
function qstring(str) {
|
||||
if (TOKEN_REGEXP.test(str))
|
||||
return str;
|
||||
if (TEXT_REGEXP.test(str))
|
||||
return `"${str.replace(QUOTE_REGEXP, "\\$&")}"`;
|
||||
throw new TypeError(`Invalid parameter value: ${str}`);
|
||||
}
|
||||
module.exports.default = { parse: parse22, safeParse: safeParse2 };
|
||||
module.exports.parse = parse22;
|
||||
module.exports.safeParse = safeParse2;
|
||||
module.exports.defaultContentType = defaultContentType;
|
||||
}
|
||||
});
|
||||
var require_constants6 = __commonJS2({
|
||||
|
|
@ -38021,7 +38057,7 @@ var require_parse2 = __commonJS2({
|
|||
""(exports, module) {
|
||||
"use strict";
|
||||
var SemVer = require_semver();
|
||||
var parse22 = (version, options, throwErrors = false) => {
|
||||
var parse32 = (version, options, throwErrors = false) => {
|
||||
if (version instanceof SemVer) {
|
||||
return version;
|
||||
}
|
||||
|
|
@ -38034,15 +38070,15 @@ var require_parse2 = __commonJS2({
|
|||
throw er;
|
||||
}
|
||||
};
|
||||
module.exports = parse22;
|
||||
module.exports = parse32;
|
||||
}
|
||||
});
|
||||
var require_valid = __commonJS2({
|
||||
""(exports, module) {
|
||||
"use strict";
|
||||
var parse22 = require_parse2();
|
||||
var parse32 = require_parse2();
|
||||
var valid = (version, options) => {
|
||||
const v = parse22(version, options);
|
||||
const v = parse32(version, options);
|
||||
return v ? v.version : null;
|
||||
};
|
||||
module.exports = valid;
|
||||
|
|
@ -38051,9 +38087,9 @@ var require_valid = __commonJS2({
|
|||
var require_clean = __commonJS2({
|
||||
""(exports, module) {
|
||||
"use strict";
|
||||
var parse22 = require_parse2();
|
||||
var parse32 = require_parse2();
|
||||
var clean = (version, options) => {
|
||||
const s = parse22(version.trim().replace(/^[=v]+/, ""), options);
|
||||
const s = parse32(version.trim().replace(/^[=v]+/, ""), options);
|
||||
return s ? s.version : null;
|
||||
};
|
||||
module.exports = clean;
|
||||
|
|
@ -38084,10 +38120,10 @@ var require_inc = __commonJS2({
|
|||
var require_diff = __commonJS2({
|
||||
""(exports, module) {
|
||||
"use strict";
|
||||
var parse22 = require_parse2();
|
||||
var parse32 = require_parse2();
|
||||
var diff = (version1, version2) => {
|
||||
const v1 = parse22(version1, null, true);
|
||||
const v2 = parse22(version2, null, true);
|
||||
const v1 = parse32(version1, null, true);
|
||||
const v2 = parse32(version2, null, true);
|
||||
const comparison = v1.compare(v2);
|
||||
if (comparison === 0) {
|
||||
return null;
|
||||
|
|
@ -38150,9 +38186,9 @@ var require_patch = __commonJS2({
|
|||
var require_prerelease = __commonJS2({
|
||||
""(exports, module) {
|
||||
"use strict";
|
||||
var parse22 = require_parse2();
|
||||
var parse32 = require_parse2();
|
||||
var prerelease = (version, options) => {
|
||||
const parsed = parse22(version, options);
|
||||
const parsed = parse32(version, options);
|
||||
return parsed && parsed.prerelease.length ? parsed.prerelease : null;
|
||||
};
|
||||
module.exports = prerelease;
|
||||
|
|
@ -38310,7 +38346,7 @@ var require_coerce = __commonJS2({
|
|||
""(exports, module) {
|
||||
"use strict";
|
||||
var SemVer = require_semver();
|
||||
var parse22 = require_parse2();
|
||||
var parse32 = require_parse2();
|
||||
var { safeRe: re, t } = require_re();
|
||||
var coerce = (version, options) => {
|
||||
if (version instanceof SemVer) {
|
||||
|
|
@ -38345,11 +38381,50 @@ var require_coerce = __commonJS2({
|
|||
const patch = match[4] || "0";
|
||||
const prerelease = options.includePrerelease && match[5] ? `-${match[5]}` : "";
|
||||
const build = options.includePrerelease && match[6] ? `+${match[6]}` : "";
|
||||
return parse22(`${major}.${minor}.${patch}${prerelease}${build}`, options);
|
||||
return parse32(`${major}.${minor}.${patch}${prerelease}${build}`, options);
|
||||
};
|
||||
module.exports = coerce;
|
||||
}
|
||||
});
|
||||
var require_truncate = __commonJS2({
|
||||
""(exports, module) {
|
||||
"use strict";
|
||||
var parse32 = require_parse2();
|
||||
var constants3 = require_constants6();
|
||||
var SemVer = require_semver();
|
||||
var truncate = (version, truncation, options) => {
|
||||
if (!constants3.RELEASE_TYPES.includes(truncation)) {
|
||||
return null;
|
||||
}
|
||||
const clonedVersion = cloneInputVersion(version, options);
|
||||
return clonedVersion && doTruncation(clonedVersion, truncation);
|
||||
};
|
||||
var cloneInputVersion = (version, options) => {
|
||||
const versionStringToParse = version instanceof SemVer ? version.version : version;
|
||||
return parse32(versionStringToParse, options);
|
||||
};
|
||||
var doTruncation = (version, truncation) => {
|
||||
if (isPrerelease(truncation)) {
|
||||
return version.version;
|
||||
}
|
||||
version.prerelease = [];
|
||||
switch (truncation) {
|
||||
case "major":
|
||||
version.minor = 0;
|
||||
version.patch = 0;
|
||||
break;
|
||||
case "minor":
|
||||
version.patch = 0;
|
||||
break;
|
||||
}
|
||||
return version.format();
|
||||
};
|
||||
var isPrerelease = (type) => {
|
||||
return type.startsWith("pre");
|
||||
};
|
||||
module.exports = truncate;
|
||||
}
|
||||
});
|
||||
var require_lrucache = __commonJS2({
|
||||
""(exports, module) {
|
||||
"use strict";
|
||||
|
|
@ -39329,7 +39404,7 @@ var require_semver2 = __commonJS2({
|
|||
var constants3 = require_constants6();
|
||||
var SemVer = require_semver();
|
||||
var identifiers = require_identifiers();
|
||||
var parse22 = require_parse2();
|
||||
var parse32 = require_parse2();
|
||||
var valid = require_valid();
|
||||
var clean = require_clean();
|
||||
var inc = require_inc();
|
||||
|
|
@ -39352,6 +39427,7 @@ var require_semver2 = __commonJS2({
|
|||
var lte = require_lte();
|
||||
var cmp = require_cmp();
|
||||
var coerce = require_coerce();
|
||||
var truncate = require_truncate();
|
||||
var Comparator = require_comparator();
|
||||
var Range = require_range();
|
||||
var satisfies = require_satisfies();
|
||||
|
|
@ -39367,7 +39443,7 @@ var require_semver2 = __commonJS2({
|
|||
var simplifyRange = require_simplify();
|
||||
var subset = require_subset();
|
||||
module.exports = {
|
||||
parse: parse22,
|
||||
parse: parse32,
|
||||
valid,
|
||||
clean,
|
||||
inc,
|
||||
|
|
@ -39390,6 +39466,7 @@ var require_semver2 = __commonJS2({
|
|||
lte,
|
||||
cmp,
|
||||
coerce,
|
||||
truncate,
|
||||
Comparator,
|
||||
Range,
|
||||
satisfies,
|
||||
|
|
@ -44656,8 +44733,10 @@ ${cb}` : comment;
|
|||
}
|
||||
}
|
||||
if (afterDoc) {
|
||||
Array.prototype.push.apply(doc.errors, this.errors);
|
||||
Array.prototype.push.apply(doc.warnings, this.warnings);
|
||||
for (let i = 0; i < this.errors.length; ++i)
|
||||
doc.errors.push(this.errors[i]);
|
||||
for (let i = 0; i < this.warnings.length; ++i)
|
||||
doc.warnings.push(this.warnings[i]);
|
||||
} else {
|
||||
doc.errors = this.errors;
|
||||
doc.warnings = this.warnings;
|
||||
|
|
@ -45380,7 +45459,7 @@ var require_lexer = __commonJS2({
|
|||
const n = (yield* this.pushCount(1)) + (yield* this.pushSpaces(true));
|
||||
this.indentNext = this.indentValue + 1;
|
||||
this.indentValue += n;
|
||||
return yield* this.parseBlockStart();
|
||||
return "block-start";
|
||||
}
|
||||
return "doc";
|
||||
}
|
||||
|
|
@ -45677,26 +45756,37 @@ var require_lexer = __commonJS2({
|
|||
return 0;
|
||||
}
|
||||
*pushIndicators() {
|
||||
switch (this.charAt(0)) {
|
||||
case "!":
|
||||
return (yield* this.pushTag()) + (yield* this.pushSpaces(true)) + (yield* this.pushIndicators());
|
||||
case "&":
|
||||
return (yield* this.pushUntil(isNotAnchorChar)) + (yield* this.pushSpaces(true)) + (yield* this.pushIndicators());
|
||||
case "-":
|
||||
case "?":
|
||||
case ":": {
|
||||
const inFlow = this.flowLevel > 0;
|
||||
const ch1 = this.charAt(1);
|
||||
if (isEmpty(ch1) || inFlow && flowIndicatorChars.has(ch1)) {
|
||||
if (!inFlow)
|
||||
this.indentNext = this.indentValue + 1;
|
||||
else if (this.flowKey)
|
||||
this.flowKey = false;
|
||||
return (yield* this.pushCount(1)) + (yield* this.pushSpaces(true)) + (yield* this.pushIndicators());
|
||||
let n = 0;
|
||||
loop:
|
||||
while (true) {
|
||||
switch (this.charAt(0)) {
|
||||
case "!":
|
||||
n += yield* this.pushTag();
|
||||
n += yield* this.pushSpaces(true);
|
||||
continue loop;
|
||||
case "&":
|
||||
n += yield* this.pushUntil(isNotAnchorChar);
|
||||
n += yield* this.pushSpaces(true);
|
||||
continue loop;
|
||||
case "-":
|
||||
case "?":
|
||||
case ":": {
|
||||
const inFlow = this.flowLevel > 0;
|
||||
const ch1 = this.charAt(1);
|
||||
if (isEmpty(ch1) || inFlow && flowIndicatorChars.has(ch1)) {
|
||||
if (!inFlow)
|
||||
this.indentNext = this.indentValue + 1;
|
||||
else if (this.flowKey)
|
||||
this.flowKey = false;
|
||||
n += yield* this.pushCount(1);
|
||||
n += yield* this.pushSpaces(true);
|
||||
continue loop;
|
||||
}
|
||||
}
|
||||
}
|
||||
break loop;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
return n;
|
||||
}
|
||||
*pushTag() {
|
||||
if (this.charAt(1) === "<") {
|
||||
|
|
@ -45851,6 +45941,13 @@ var require_parser = __commonJS2({
|
|||
}
|
||||
return prev.splice(i, prev.length);
|
||||
}
|
||||
function arrayPushArray(target, source) {
|
||||
if (source.length < 1e5)
|
||||
Array.prototype.push.apply(target, source);
|
||||
else
|
||||
for (let i = 0; i < source.length; ++i)
|
||||
target.push(source[i]);
|
||||
}
|
||||
function fixFlowSeqItems(fc) {
|
||||
if (fc.start.type === "flow-seq-start") {
|
||||
for (const it of fc.items) {
|
||||
|
|
@ -45860,11 +45957,11 @@ var require_parser = __commonJS2({
|
|||
delete it.key;
|
||||
if (isFlowToken(it.value)) {
|
||||
if (it.value.end)
|
||||
Array.prototype.push.apply(it.value.end, it.sep);
|
||||
arrayPushArray(it.value.end, it.sep);
|
||||
else
|
||||
it.value.end = it.sep;
|
||||
} else
|
||||
Array.prototype.push.apply(it.start, it.sep);
|
||||
arrayPushArray(it.start, it.sep);
|
||||
delete it.sep;
|
||||
}
|
||||
}
|
||||
|
|
@ -46217,7 +46314,7 @@ var require_parser = __commonJS2({
|
|||
const prev = map.items[map.items.length - 2];
|
||||
const end = prev?.value?.end;
|
||||
if (Array.isArray(end)) {
|
||||
Array.prototype.push.apply(end, it.start);
|
||||
arrayPushArray(end, it.start);
|
||||
end.push(this.sourceToken);
|
||||
map.items.pop();
|
||||
return;
|
||||
|
|
@ -46405,7 +46502,7 @@ var require_parser = __commonJS2({
|
|||
const prev = seq.items[seq.items.length - 2];
|
||||
const end = prev?.value?.end;
|
||||
if (Array.isArray(end)) {
|
||||
Array.prototype.push.apply(end, it.start);
|
||||
arrayPushArray(end, it.start);
|
||||
end.push(this.sourceToken);
|
||||
seq.items.pop();
|
||||
return;
|
||||
|
|
@ -46691,7 +46788,7 @@ var require_public_api = __commonJS2({
|
|||
}
|
||||
return doc;
|
||||
}
|
||||
function parse22(src, reviver, options) {
|
||||
function parse32(src, reviver, options) {
|
||||
let _reviver = void 0;
|
||||
if (typeof reviver === "function") {
|
||||
_reviver = reviver;
|
||||
|
|
@ -46732,13 +46829,13 @@ var require_public_api = __commonJS2({
|
|||
return value.toString(options);
|
||||
return new Document.Document(value, _replacer, options).toString(options);
|
||||
}
|
||||
exports.parse = parse22;
|
||||
exports.parse = parse32;
|
||||
exports.parseAllDocuments = parseAllDocuments;
|
||||
exports.parseDocument = parseDocument;
|
||||
exports.stringify = stringify;
|
||||
}
|
||||
});
|
||||
var require_dist2 = __commonJS2({
|
||||
var require_dist22 = __commonJS2({
|
||||
""(exports) {
|
||||
"use strict";
|
||||
var composer = require_composer();
|
||||
|
|
@ -47211,7 +47308,7 @@ function withDefaults4(oldDefaults, newDefaults) {
|
|||
});
|
||||
}
|
||||
var endpoint2 = withDefaults4(null, DEFAULTS2);
|
||||
var import_fast_content_type_parse = __toESM2(require_fast_content_type_parse());
|
||||
var import_content_type2 = __toESM2(require_dist2());
|
||||
var intRegex2 = /^-?\d+$/;
|
||||
var noiseValue2 = /^-?\d+n+$/;
|
||||
var originalStringify2 = JSON.stringify;
|
||||
|
|
@ -47366,7 +47463,7 @@ var RequestError2 = class extends Error {
|
|||
this.request = requestCopy;
|
||||
}
|
||||
};
|
||||
var VERSION22 = "10.0.8";
|
||||
var VERSION22 = "10.0.9";
|
||||
var defaults_default2 = {
|
||||
headers: {
|
||||
"user-agent": `octokit-request.js/${VERSION22} ${getUserAgent2()}`
|
||||
|
|
@ -47487,7 +47584,7 @@ async function getResponseData2(response) {
|
|||
if (!contentType) {
|
||||
return response.text().catch(noop3);
|
||||
}
|
||||
const mimetype = (0, import_fast_content_type_parse.safeParse)(contentType);
|
||||
const mimetype = (0, import_content_type2.parse)(contentType);
|
||||
if (isJSONResponse2(mimetype)) {
|
||||
let text = "";
|
||||
try {
|
||||
|
|
@ -51454,7 +51551,7 @@ var allLabels = {
|
|||
...miscLabels
|
||||
};
|
||||
var import_which = __toESM2(require_lib2());
|
||||
var import_yaml = __toESM2(require_dist2());
|
||||
var import_yaml = __toESM2(require_dist22());
|
||||
|
||||
//
|
||||
var require6 = __cjsCompatRequire_ngDev5(import.meta.url);
|
||||
|
|
@ -51674,9 +51771,16 @@ content-type/dist/index.js:
|
|||
*)
|
||||
*)
|
||||
|
||||
@angular/ng-dev/bundles/chunk-6BHVTSCA.mjs:
|
||||
@angular/ng-dev/bundles/chunk-XI6A552T.mjs:
|
||||
(*! Bundled license information:
|
||||
|
||||
content-type/dist/index.js:
|
||||
(*!
|
||||
* content-type
|
||||
* Copyright(c) 2015 Douglas Christopher Wilson
|
||||
* MIT Licensed
|
||||
*)
|
||||
|
||||
@octokit/request-error/dist-src/index.js:
|
||||
(* v8 ignore else -- @preserve -- Bug with vitest coverage where it sees an else branch that doesn't exist *)
|
||||
|
||||
|
|
|
|||
|
|
@ -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 = "045f98407a299ffaeeeafa275d8490d4507513f8",
|
||||
commit = "48833d6ad8abdac2d90d7704b1ac42416be25d2e",
|
||||
remote = "https://github.com/angular/rules_angular.git",
|
||||
)
|
||||
|
||||
bazel_dep(name = "devinfra")
|
||||
git_override(
|
||||
module_name = "devinfra",
|
||||
commit = "eaa9aaa98de612484109350f710fdb02e92c84ae",
|
||||
commit = "bcac3047149f2f7780bbf4bd4865890af6f534c0",
|
||||
remote = "https://github.com/angular/dev-infra.git",
|
||||
)
|
||||
|
||||
bazel_dep(name = "rules_sass")
|
||||
git_override(
|
||||
module_name = "rules_sass",
|
||||
commit = "846437db57b03761ac6af22415919a9763b7be65",
|
||||
commit = "a67d13a0f46cf1b789a36248c3eb39a093699072",
|
||||
remote = "https://github.com/angular/rules_sass.git",
|
||||
)
|
||||
|
||||
bazel_dep(name = "rules_browsers")
|
||||
git_override(
|
||||
module_name = "rules_browsers",
|
||||
commit = "bf27ea46fdbb0209526ca821f1500d4337eb8299",
|
||||
commit = "19422a0585f62ef061db49d3643ea3891a70d643",
|
||||
remote = "https://github.com/angular/rules_browsers.git",
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -20,12 +20,15 @@
|
|||
"https://bcr.bazel.build/modules/aspect_bazel_lib/2.7.7/MODULE.bazel": "491f8681205e31bb57892d67442ce448cda4f472a8e6b3dc062865e29a64f89c",
|
||||
"https://bcr.bazel.build/modules/aspect_bazel_lib/2.8.1/MODULE.bazel": "812d2dd42f65dca362152101fbec418029cc8fd34cbad1a2fde905383d705838",
|
||||
"https://bcr.bazel.build/modules/aspect_rules_esbuild/0.25.1/MODULE.bazel": "9b931b3e483bd8eedb6966bda6df07d801f70ccb4896231b4e5e711b5130f3aa",
|
||||
"https://bcr.bazel.build/modules/aspect_rules_esbuild/0.25.1/source.json": "a0b72e23ed06113f3878cb635d586b4045ef37750983467af72fe0315c3a2fcd",
|
||||
"https://bcr.bazel.build/modules/aspect_rules_esbuild/0.26.0/MODULE.bazel": "6c902d97038c3ab07b6c4e67c97abc61b20182fcfa84fa7dee82fc724f12e455",
|
||||
"https://bcr.bazel.build/modules/aspect_rules_esbuild/0.26.0/source.json": "4cc3ece7ab661bb391a9e24fe55c4b567d60a9ea9d9e91d772dad373cbcb6217",
|
||||
"https://bcr.bazel.build/modules/aspect_rules_jasmine/2.0.4/MODULE.bazel": "fbb819eb8b7e5d7f67fdd38f7cecb413e287594cd666ce192c72c8828527775a",
|
||||
"https://bcr.bazel.build/modules/aspect_rules_jasmine/2.0.4/source.json": "81ffb708333cd98ec3c0b4cc004f4d5cf92a16914b5196a2892c45141bba7cff",
|
||||
"https://bcr.bazel.build/modules/aspect_rules_js/2.0.0/MODULE.bazel": "b45b507574aa60a92796e3e13c195cd5744b3b8aff516a9c0cb5ae6a048161c5",
|
||||
"https://bcr.bazel.build/modules/aspect_rules_js/3.0.3/MODULE.bazel": "28a30e8fc33bf64a67835d64d124f6e05a7d59648dcb27b110fb3502f761e503",
|
||||
"https://bcr.bazel.build/modules/aspect_rules_js/3.1.1/MODULE.bazel": "b83cf3ee44837345f1c926d70b96453deb5e244de43d08dcd7acad8d381c275a",
|
||||
"https://bcr.bazel.build/modules/aspect_rules_js/3.1.1/source.json": "2806c2d7ce5993f68b74df5f3e2de45d4b2a5798afedd459d88e37c75562da97",
|
||||
"https://bcr.bazel.build/modules/aspect_rules_js/3.1.2/MODULE.bazel": "e3685502155d3cc65f3bf98e714f7435de67d7f8f355d63478a80197310311fc",
|
||||
"https://bcr.bazel.build/modules/aspect_rules_js/3.1.2/source.json": "a32ab71831452b945f3f83a1b1feb9402007e600bce55ac76e15ef0c1e08b520",
|
||||
"https://bcr.bazel.build/modules/aspect_rules_rollup/2.0.1/MODULE.bazel": "296e3a053658c2af989ba9bd62a205e6d1fa84bdd6dd5249196546e6b84770ec",
|
||||
"https://bcr.bazel.build/modules/aspect_rules_rollup/2.0.1/source.json": "2fe8ac1ccb4de74bf884761e070010280b272d94e3997205b361b91c75409726",
|
||||
"https://bcr.bazel.build/modules/aspect_rules_ts/3.8.9/MODULE.bazel": "bd5f9ebf517cfcd377eaa7ce1cb16035d167f00774b77789909590c53bc6f20c",
|
||||
|
|
@ -205,6 +208,7 @@
|
|||
"https://bcr.bazel.build/modules/upb/0.0.0-20220923-a547704/MODULE.bazel": "7298990c00040a0e2f121f6c32544bab27d4452f80d9ce51349b1a28f3005c43",
|
||||
"https://bcr.bazel.build/modules/yq.bzl/0.1.1/MODULE.bazel": "9039681f9bcb8958ee2c87ffc74bdafba9f4369096a2b5634b88abc0eaefa072",
|
||||
"https://bcr.bazel.build/modules/yq.bzl/0.3.2/MODULE.bazel": "0384efa70e8033d842ea73aa4b7199fa099709e236a7264345c03937166670b6",
|
||||
"https://bcr.bazel.build/modules/yq.bzl/0.3.4/MODULE.bazel": "d3a270662f5d766cd7229732d65a5a5bc485240c3007343dd279edfb60c9ae27",
|
||||
"https://bcr.bazel.build/modules/yq.bzl/0.3.6/MODULE.bazel": "985c2a0cb4ad9994bb0e33cc7fae931c91105eeefe3faa355b8f4c258d0607c0",
|
||||
"https://bcr.bazel.build/modules/yq.bzl/0.3.6/source.json": "678aaf6e291164f3cd761bb3e872e8a151248f413dbb63c5524a50b82a5bc890",
|
||||
"https://bcr.bazel.build/modules/zlib/1.2.11/MODULE.bazel": "07b389abc85fdbca459b69e2ec656ae5622873af3f845e1c9d80fe179f3effa0",
|
||||
|
|
@ -217,8 +221,8 @@
|
|||
"moduleExtensions": {
|
||||
"@@aspect_rules_esbuild+//esbuild:extensions.bzl%esbuild": {
|
||||
"general": {
|
||||
"bzlTransitiveDigest": "yEdNDVnymA4zAhL3PLavB/cRtK1c5FZ3PMxhjTrwbBw=",
|
||||
"usagesDigest": "6We6zwGoawD9YXqMI0KPaxEKJTnamXBsuOekhFS2D40=",
|
||||
"bzlTransitiveDigest": "i4NcV2RXxMt69CraWA+/XAmfJOD2VYLrXz1Naf2sgek=",
|
||||
"usagesDigest": "LSQ+zZp7JNgnBONTxxXnwGr4NTh2qtQYk7qwXXz5qWo=",
|
||||
"recordedFileInputs": {},
|
||||
"recordedDirentsInputs": {},
|
||||
"envVariables": {},
|
||||
|
|
@ -496,7 +500,7 @@
|
|||
"@@aspect_tools_telemetry+//:extension.bzl%telemetry": {
|
||||
"general": {
|
||||
"bzlTransitiveDigest": "cl5A2O84vDL6Tt+Qga8FCj1DUDGqn+e7ly5rZ+4xvcc=",
|
||||
"usagesDigest": "ZZb1xIaM7MwIk9oEUnD4lvRBuRPBGUaaRCajg1kTm5c=",
|
||||
"usagesDigest": "2rkxV5oFhRJXyaR0vsDXw76O5QXGwQ9/y+nmRZZg990=",
|
||||
"recordedFileInputs": {},
|
||||
"recordedDirentsInputs": {},
|
||||
"envVariables": {},
|
||||
|
|
@ -506,8 +510,8 @@
|
|||
"attributes": {
|
||||
"deps": {
|
||||
"aspect_rules_ts": "3.8.9",
|
||||
"aspect_rules_js": "3.1.1",
|
||||
"aspect_rules_esbuild": "0.25.1",
|
||||
"aspect_rules_js": "3.1.2",
|
||||
"aspect_rules_esbuild": "0.26.0",
|
||||
"aspect_rules_jasmine": "2.0.4",
|
||||
"aspect_tools_telemetry": "0.3.3"
|
||||
}
|
||||
|
|
@ -590,7 +594,7 @@
|
|||
},
|
||||
"@@rules_browsers+//browsers:extensions.bzl%browsers": {
|
||||
"general": {
|
||||
"bzlTransitiveDigest": "Bm6fiKpWy96aLohOlLCP36ARVxRLZm/R+smhsb2HzmI=",
|
||||
"bzlTransitiveDigest": "bSZZZDyC3Xuk66A4sGPS151M31eBfEr1Yii1vzk8Jbg=",
|
||||
"usagesDigest": "FmXYJVoVJlnfUU8x8gObSvu4qWcco/9Faw61aC/wBF0=",
|
||||
"recordedFileInputs": {},
|
||||
"recordedDirentsInputs": {},
|
||||
|
|
@ -599,9 +603,9 @@
|
|||
"rules_browsers_chrome_linux": {
|
||||
"repoRuleId": "@@rules_browsers+//browsers/private:browser_repo.bzl%browser_repo",
|
||||
"attributes": {
|
||||
"sha256": "1ac33f89306327af43be159c03ca4a26486de0858f42fe52394acdef50364143",
|
||||
"sha256": "086e266054c7e9b8a690e50f711c00f399f66e04bd77b078e26073cc634345bd",
|
||||
"urls": [
|
||||
"https://storage.googleapis.com/chrome-for-testing-public/147.0.7687.0/linux64/chrome-headless-shell-linux64.zip"
|
||||
"https://storage.googleapis.com/chrome-for-testing-public/150.0.7845.0/linux64/chrome-headless-shell-linux64.zip"
|
||||
],
|
||||
"named_files": {
|
||||
"CHROME-HEADLESS-SHELL": "chrome-headless-shell-linux64/chrome-headless-shell"
|
||||
|
|
@ -617,9 +621,9 @@
|
|||
"rules_browsers_chrome_mac": {
|
||||
"repoRuleId": "@@rules_browsers+//browsers/private:browser_repo.bzl%browser_repo",
|
||||
"attributes": {
|
||||
"sha256": "169ff49c465cfda52931395e61861e146dfc5013e92c01ca792db5acea858d0b",
|
||||
"sha256": "e6fc7d71132e66f71ac0c1cdaca1f956a793931488f8392cda907456102ddc15",
|
||||
"urls": [
|
||||
"https://storage.googleapis.com/chrome-for-testing-public/147.0.7687.0/mac-x64/chrome-headless-shell-mac-x64.zip"
|
||||
"https://storage.googleapis.com/chrome-for-testing-public/150.0.7845.0/mac-x64/chrome-headless-shell-mac-x64.zip"
|
||||
],
|
||||
"named_files": {
|
||||
"CHROME-HEADLESS-SHELL": "chrome-headless-shell-mac-x64/chrome-headless-shell"
|
||||
|
|
@ -635,9 +639,9 @@
|
|||
"rules_browsers_chrome_mac_arm": {
|
||||
"repoRuleId": "@@rules_browsers+//browsers/private:browser_repo.bzl%browser_repo",
|
||||
"attributes": {
|
||||
"sha256": "aeaaaaa4d68193a21bed04c44ddeb1230232707b4ea1d845a92925787509cd8e",
|
||||
"sha256": "dfcfb50b4043dcf15daaa29b2206f483916c9cf7273c42c993a04f7508208c18",
|
||||
"urls": [
|
||||
"https://storage.googleapis.com/chrome-for-testing-public/147.0.7687.0/mac-arm64/chrome-headless-shell-mac-arm64.zip"
|
||||
"https://storage.googleapis.com/chrome-for-testing-public/150.0.7845.0/mac-arm64/chrome-headless-shell-mac-arm64.zip"
|
||||
],
|
||||
"named_files": {
|
||||
"CHROME-HEADLESS-SHELL": "chrome-headless-shell-mac-arm64/chrome-headless-shell"
|
||||
|
|
@ -653,9 +657,9 @@
|
|||
"rules_browsers_chrome_win64": {
|
||||
"repoRuleId": "@@rules_browsers+//browsers/private:browser_repo.bzl%browser_repo",
|
||||
"attributes": {
|
||||
"sha256": "4d6d79bcbcb22084df6e3a3d3a2caff67d6c0fa488d63f0c7ec1526f9553db8c",
|
||||
"sha256": "75cd03e716b8dba25699e417fe199847c38b96246321f7b04e09b3b46960b820",
|
||||
"urls": [
|
||||
"https://storage.googleapis.com/chrome-for-testing-public/147.0.7687.0/win64/chrome-headless-shell-win64.zip"
|
||||
"https://storage.googleapis.com/chrome-for-testing-public/150.0.7845.0/win64/chrome-headless-shell-win64.zip"
|
||||
],
|
||||
"named_files": {
|
||||
"CHROME-HEADLESS-SHELL": "chrome-headless-shell-win64/chrome-headless-shell.exe"
|
||||
|
|
@ -671,9 +675,9 @@
|
|||
"rules_browsers_chromedriver_linux": {
|
||||
"repoRuleId": "@@rules_browsers+//browsers/private:browser_repo.bzl%browser_repo",
|
||||
"attributes": {
|
||||
"sha256": "0607ccf6810a07ae08cac6443beac8b23f88dd53c7f1e0299e22d65f7cd2d020",
|
||||
"sha256": "ad6a464663a80a182fb7a342b018dbd83f7c0c6d058bb1c83733de9564cf5b41",
|
||||
"urls": [
|
||||
"https://storage.googleapis.com/chrome-for-testing-public/147.0.7687.0/linux64/chromedriver-linux64.zip"
|
||||
"https://storage.googleapis.com/chrome-for-testing-public/150.0.7845.0/linux64/chromedriver-linux64.zip"
|
||||
],
|
||||
"named_files": {
|
||||
"CHROMEDRIVER": "chromedriver-linux64/chromedriver"
|
||||
|
|
@ -687,9 +691,9 @@
|
|||
"rules_browsers_chromedriver_mac": {
|
||||
"repoRuleId": "@@rules_browsers+//browsers/private:browser_repo.bzl%browser_repo",
|
||||
"attributes": {
|
||||
"sha256": "0f512a9dd683ed4c41e609d8d02c07807497dbad3ab2f95f0d583486be7b8cff",
|
||||
"sha256": "9d9ff5954d0737ed9dc3c1c3e1f82b05f924f17ecafb41c29c201c1033aadfb5",
|
||||
"urls": [
|
||||
"https://storage.googleapis.com/chrome-for-testing-public/147.0.7687.0/mac-x64/chromedriver-mac-x64.zip"
|
||||
"https://storage.googleapis.com/chrome-for-testing-public/150.0.7845.0/mac-x64/chromedriver-mac-x64.zip"
|
||||
],
|
||||
"named_files": {
|
||||
"CHROMEDRIVER": "chromedriver-mac-x64/chromedriver"
|
||||
|
|
@ -703,9 +707,9 @@
|
|||
"rules_browsers_chromedriver_mac_arm": {
|
||||
"repoRuleId": "@@rules_browsers+//browsers/private:browser_repo.bzl%browser_repo",
|
||||
"attributes": {
|
||||
"sha256": "7d6fc6d17de1733eb6739d1ea16d085c8df1568bcf9fa0d130c2784b27f38268",
|
||||
"sha256": "a60658d6ab769eeeaef63c6d0ec14fa71c12f4738ea43b59b1a034a7a64f4efd",
|
||||
"urls": [
|
||||
"https://storage.googleapis.com/chrome-for-testing-public/147.0.7687.0/mac-arm64/chromedriver-mac-arm64.zip"
|
||||
"https://storage.googleapis.com/chrome-for-testing-public/150.0.7845.0/mac-arm64/chromedriver-mac-arm64.zip"
|
||||
],
|
||||
"named_files": {
|
||||
"CHROMEDRIVER": "chromedriver-mac-arm64/chromedriver"
|
||||
|
|
@ -719,9 +723,9 @@
|
|||
"rules_browsers_chromedriver_win64": {
|
||||
"repoRuleId": "@@rules_browsers+//browsers/private:browser_repo.bzl%browser_repo",
|
||||
"attributes": {
|
||||
"sha256": "f4e9fb7bbf692fde7979b24e8d737b3cef4baafbc7a370e5d0abc4a8450fd830",
|
||||
"sha256": "29bb5f0c0045449084be76030266abef53071a136aea16a58626bb29e73c687c",
|
||||
"urls": [
|
||||
"https://storage.googleapis.com/chrome-for-testing-public/147.0.7687.0/win64/chromedriver-win64.zip"
|
||||
"https://storage.googleapis.com/chrome-for-testing-public/150.0.7845.0/win64/chromedriver-win64.zip"
|
||||
],
|
||||
"named_files": {
|
||||
"CHROMEDRIVER": "chromedriver-win64/chromedriver.exe"
|
||||
|
|
@ -735,9 +739,9 @@
|
|||
"rules_browsers_firefox_linux": {
|
||||
"repoRuleId": "@@rules_browsers+//browsers/private:browser_repo.bzl%browser_repo",
|
||||
"attributes": {
|
||||
"sha256": "f055b9c0d7346a10d22edc7f10e08679af2ea495367381ab2be9cab3ec6add97",
|
||||
"sha256": "8ff8557a5ca3903ebbc1d18570684075f623465be5e362d63a95b3acc523f824",
|
||||
"urls": [
|
||||
"https://archive.mozilla.org/pub/firefox/releases/147.0/linux-x86_64/en-US/firefox-147.0.tar.xz"
|
||||
"https://archive.mozilla.org/pub/firefox/releases/151.0/linux-x86_64/en-US/firefox-151.0.tar.xz"
|
||||
],
|
||||
"named_files": {
|
||||
"FIREFOX": "firefox/firefox"
|
||||
|
|
@ -751,9 +755,9 @@
|
|||
"rules_browsers_firefox_mac": {
|
||||
"repoRuleId": "@@rules_browsers+//browsers/private:browser_repo.bzl%browser_repo",
|
||||
"attributes": {
|
||||
"sha256": "48485e2068bc726e2f30cf5855fc2da1fc75c1272bc243a5394f428ffae3ba35",
|
||||
"sha256": "5a56ebd8f0f8cec94a86e04c6793e1d1502b40206f5d4c86fff5b7a270e84f6b",
|
||||
"urls": [
|
||||
"https://archive.mozilla.org/pub/firefox/releases/147.0/mac/en-US/Firefox%20147.0.dmg"
|
||||
"https://archive.mozilla.org/pub/firefox/releases/151.0/mac/en-US/Firefox%20151.0.dmg"
|
||||
],
|
||||
"named_files": {
|
||||
"FIREFOX": "Firefox.app/Contents/MacOS/firefox"
|
||||
|
|
@ -767,9 +771,9 @@
|
|||
"rules_browsers_firefox_mac_arm": {
|
||||
"repoRuleId": "@@rules_browsers+//browsers/private:browser_repo.bzl%browser_repo",
|
||||
"attributes": {
|
||||
"sha256": "48485e2068bc726e2f30cf5855fc2da1fc75c1272bc243a5394f428ffae3ba35",
|
||||
"sha256": "5a56ebd8f0f8cec94a86e04c6793e1d1502b40206f5d4c86fff5b7a270e84f6b",
|
||||
"urls": [
|
||||
"https://archive.mozilla.org/pub/firefox/releases/147.0/mac/en-US/Firefox%20147.0.dmg"
|
||||
"https://archive.mozilla.org/pub/firefox/releases/151.0/mac/en-US/Firefox%20151.0.dmg"
|
||||
],
|
||||
"named_files": {
|
||||
"FIREFOX": "Firefox.app/Contents/MacOS/firefox"
|
||||
|
|
@ -783,9 +787,9 @@
|
|||
"rules_browsers_firefox_win64": {
|
||||
"repoRuleId": "@@rules_browsers+//browsers/private:browser_repo.bzl%browser_repo",
|
||||
"attributes": {
|
||||
"sha256": "36ff9e150875aa48a0af9eec3eb67f66dddd8efac5c743265371a72ae3e796c4",
|
||||
"sha256": "358381238a840831da8a6cda16721692df91a74bc44847ff0285da12de788a8d",
|
||||
"urls": [
|
||||
"https://archive.mozilla.org/pub/firefox/releases/147.0/win64/en-US/Firefox%20Setup%20147.0.exe"
|
||||
"https://archive.mozilla.org/pub/firefox/releases/151.0/win64/en-US/Firefox%20Setup%20151.0.exe"
|
||||
],
|
||||
"named_files": {
|
||||
"FIREFOX": "core/firefox.exe"
|
||||
|
|
@ -950,7 +954,7 @@
|
|||
"@@rules_nodejs+//nodejs:extensions.bzl%node": {
|
||||
"general": {
|
||||
"bzlTransitiveDigest": "oZFClfRhTTwsYzpxVPkOpOt/r0+OzEfEV37au0jFZ0s=",
|
||||
"usagesDigest": "U4CYOQYDtSR3kZ0TZ9Z5qIPfS3Gb2y5IERDI0XgHptc=",
|
||||
"usagesDigest": "5xgGXjEC5qTpg7xBJYsOC/CQObiJajDEhSImV0RTJN4=",
|
||||
"recordedFileInputs": {},
|
||||
"recordedDirentsInputs": {},
|
||||
"envVariables": {},
|
||||
|
|
@ -4166,7 +4170,7 @@
|
|||
"@@yq.bzl+//yq:extensions.bzl%yq": {
|
||||
"general": {
|
||||
"bzlTransitiveDigest": "UfFMy8CWK4/dVo/tfaSAIYUiDGNAPes5eRllx9O9Q9Q=",
|
||||
"usagesDigest": "S0iKr407bxb958DX9nvFIy8pPC6eCZJYS5Ok45r9U2g=",
|
||||
"usagesDigest": "+cuh2+c/9yZnSskZ4MS5Fta6UXLMaLxaEjqeSWMdN78=",
|
||||
"recordedFileInputs": {},
|
||||
"recordedDirentsInputs": {},
|
||||
"envVariables": {},
|
||||
|
|
|
|||
|
|
@ -138,7 +138,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#2c36222db3f44751284cc93b3806dbe1baee583a",
|
||||
"@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#98b21a0cb6ef6d068a99a9346e89812e3ec9d2b1",
|
||||
"@babel/plugin-transform-async-generator-functions": "^7.27.1",
|
||||
"@bazel/bazelisk": "^1.7.5",
|
||||
"@bazel/buildifier": "^8.0.0",
|
||||
|
|
|
|||
901
pnpm-lock.yaml
901
pnpm-lock.yaml
File diff suppressed because it is too large
Load diff
|
|
@ -9,7 +9,7 @@
|
|||
"rxjs": "7.8.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"ng-packagr": "22.0.0-next.4",
|
||||
"ng-packagr": "22.0.0-rc.0",
|
||||
"typescript": "6.0.3"
|
||||
},
|
||||
"scripts": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue