mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
build: lock file maintenance
See associated pull request for more information.
This commit is contained in:
parent
4e55ceafc9
commit
b53fa3cdaa
18 changed files with 3351 additions and 7652 deletions
281
.github/actions/deploy-docs-site/main.js
vendored
281
.github/actions/deploy-docs-site/main.js
vendored
|
|
@ -19426,98 +19426,134 @@ var require_lib = __commonJS({
|
|||
});
|
||||
|
||||
//
|
||||
var require_fast_content_type_parse = __commonJS({
|
||||
""(exports, module) {
|
||||
var require_dist = __commonJS({
|
||||
""(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 parse3(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 = parse4;
|
||||
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 parse4(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: parse3, safeParse: safeParse2 };
|
||||
module.exports.parse = parse3;
|
||||
module.exports.safeParse = safeParse2;
|
||||
module.exports.defaultContentType = defaultContentType;
|
||||
}
|
||||
});
|
||||
|
||||
|
|
@ -21630,13 +21666,13 @@ var require_lockfile = __commonJS({
|
|||
}
|
||||
concat(integrity, opts) {
|
||||
const other = typeof integrity === "string" ? integrity : stringify(integrity, opts);
|
||||
return parse3(`${this.toString(opts)} ${other}`, opts);
|
||||
return parse4(`${this.toString(opts)} ${other}`, opts);
|
||||
}
|
||||
hexDigest() {
|
||||
return parse3(this, { single: true }).hexDigest();
|
||||
return parse4(this, { single: true }).hexDigest();
|
||||
}
|
||||
match(integrity, opts) {
|
||||
const other = parse3(integrity, opts);
|
||||
const other = parse4(integrity, opts);
|
||||
const algo = other.pickAlgorithm(opts);
|
||||
return this[algo] && other[algo] && this[algo].find(
|
||||
(hash) => other[algo].find(
|
||||
|
|
@ -21655,8 +21691,8 @@ var require_lockfile = __commonJS({
|
|||
});
|
||||
}
|
||||
}
|
||||
module2.exports.parse = parse3;
|
||||
function parse3(sri, opts) {
|
||||
module2.exports.parse = parse4;
|
||||
function parse4(sri, opts) {
|
||||
opts = opts || {};
|
||||
if (typeof sri === "string") {
|
||||
return _parse(sri, opts);
|
||||
|
|
@ -21689,7 +21725,7 @@ var require_lockfile = __commonJS({
|
|||
if (obj.algorithm && obj.digest) {
|
||||
return Hash.prototype.toString.call(obj, opts);
|
||||
} else if (typeof obj === "string") {
|
||||
return stringify(parse3(obj, opts), opts);
|
||||
return stringify(parse4(obj, opts), opts);
|
||||
} else {
|
||||
return Integrity.prototype.toString.call(obj, opts);
|
||||
}
|
||||
|
|
@ -21697,7 +21733,7 @@ var require_lockfile = __commonJS({
|
|||
module2.exports.fromHex = fromHex;
|
||||
function fromHex(hexDigest, algorithm, opts) {
|
||||
const optString = opts && opts.options && opts.options.length ? `?${opts.options.join("?")}` : "";
|
||||
return parse3(
|
||||
return parse4(
|
||||
`${algorithm}-${Buffer2.from(hexDigest, "hex").toString("base64")}${optString}`,
|
||||
opts
|
||||
);
|
||||
|
|
@ -21744,7 +21780,7 @@ var require_lockfile = __commonJS({
|
|||
module2.exports.checkData = checkData;
|
||||
function checkData(data, sri, opts) {
|
||||
opts = opts || {};
|
||||
sri = parse3(sri, opts);
|
||||
sri = parse4(sri, opts);
|
||||
if (!Object.keys(sri).length) {
|
||||
if (opts.error) {
|
||||
throw Object.assign(
|
||||
|
|
@ -21759,7 +21795,7 @@ var require_lockfile = __commonJS({
|
|||
}
|
||||
const algorithm = sri.pickAlgorithm(opts);
|
||||
const digest = crypto.createHash(algorithm).update(data).digest("base64");
|
||||
const newSri = parse3({ algorithm, digest });
|
||||
const newSri = parse4({ algorithm, digest });
|
||||
const match = newSri.match(sri, opts);
|
||||
if (match || !opts.error) {
|
||||
return match;
|
||||
|
|
@ -21805,7 +21841,7 @@ var require_lockfile = __commonJS({
|
|||
module2.exports.integrityStream = integrityStream;
|
||||
function integrityStream(opts) {
|
||||
opts = opts || {};
|
||||
const sri = opts.integrity && parse3(opts.integrity, opts);
|
||||
const sri = opts.integrity && parse4(opts.integrity, opts);
|
||||
const goodSri = sri && Object.keys(sri).length;
|
||||
const algorithm = goodSri && sri.pickAlgorithm(opts);
|
||||
const digests = goodSri && sri[algorithm];
|
||||
|
|
@ -21824,7 +21860,7 @@ var require_lockfile = __commonJS({
|
|||
}
|
||||
}).on("end", () => {
|
||||
const optString = opts.options && opts.options.length ? `?${opts.options.join("?")}` : "";
|
||||
const newSri = parse3(hashes.map((h, i) => {
|
||||
const newSri = parse4(hashes.map((h, i) => {
|
||||
return `${algorithms[i]}-${h.digest("base64")}${optString}`;
|
||||
}).join(" "), opts);
|
||||
const match = goodSri && newSri.match(sri, opts);
|
||||
|
|
@ -22085,9 +22121,9 @@ var require_lockfile = __commonJS({
|
|||
}
|
||||
return expand3(pattern);
|
||||
}
|
||||
Minimatch.prototype.parse = parse3;
|
||||
Minimatch.prototype.parse = parse4;
|
||||
var SUBPARSE = {};
|
||||
function parse3(pattern, isSub) {
|
||||
function parse4(pattern, isSub) {
|
||||
if (pattern.length > 1024 * 64) {
|
||||
throw new TypeError("pattern is too long");
|
||||
}
|
||||
|
|
@ -23203,7 +23239,7 @@ var require_lockfile = __commonJS({
|
|||
});
|
||||
exports2.default = function(str, fileLoc = "lockfile") {
|
||||
str = (0, (_stripBom || _load_stripBom()).default)(str);
|
||||
return hasMergeConflicts(str) ? parseWithConflict(str, fileLoc) : { type: "success", object: parse3(str, fileLoc) };
|
||||
return hasMergeConflicts(str) ? parseWithConflict(str, fileLoc) : { type: "success", object: parse4(str, fileLoc) };
|
||||
};
|
||||
var _util;
|
||||
function _load_util() {
|
||||
|
|
@ -23536,7 +23572,7 @@ var require_lockfile = __commonJS({
|
|||
function hasMergeConflicts(str) {
|
||||
return str.includes(MERGE_CONFLICT_START) && str.includes(MERGE_CONFLICT_SEP) && str.includes(MERGE_CONFLICT_END);
|
||||
}
|
||||
function parse3(str, fileLoc) {
|
||||
function parse4(str, fileLoc) {
|
||||
const parser2 = new Parser2(str, fileLoc);
|
||||
parser2.next();
|
||||
return parser2.parse();
|
||||
|
|
@ -23544,7 +23580,7 @@ var require_lockfile = __commonJS({
|
|||
function parseWithConflict(str, fileLoc) {
|
||||
const variants = extractConflictVariants(str);
|
||||
try {
|
||||
return { type: "merge", object: Object.assign({}, parse3(variants[0], fileLoc), parse3(variants[1], fileLoc)) };
|
||||
return { type: "merge", object: Object.assign({}, parse4(variants[0], fileLoc), parse4(variants[1], fileLoc)) };
|
||||
} catch (err) {
|
||||
if (err instanceof SyntaxError) {
|
||||
return { type: "conflict", object: {} };
|
||||
|
|
@ -27008,7 +27044,7 @@ ${indent}`);
|
|||
options = options || {};
|
||||
var type = typeof val;
|
||||
if (type === "string" && val.length > 0) {
|
||||
return parse3(val);
|
||||
return parse4(val);
|
||||
} else if (type === "number" && isNaN(val) === false) {
|
||||
return options.long ? fmtLong(val) : fmtShort(val);
|
||||
}
|
||||
|
|
@ -27016,7 +27052,7 @@ ${indent}`);
|
|||
"val is not a non-empty string or a valid number. val=" + JSON.stringify(val)
|
||||
);
|
||||
};
|
||||
function parse3(str) {
|
||||
function parse4(str) {
|
||||
str = String(str);
|
||||
if (str.length > 100) {
|
||||
return;
|
||||
|
|
@ -28446,7 +28482,7 @@ function withDefaults(oldDefaults, newDefaults) {
|
|||
var endpoint = withDefaults(null, DEFAULTS);
|
||||
|
||||
//
|
||||
var import_fast_content_type_parse = __toESM(require_fast_content_type_parse());
|
||||
var import_content_type = __toESM(require_dist());
|
||||
|
||||
//
|
||||
var intRegex = /^-?\d+$/;
|
||||
|
|
@ -28607,7 +28643,7 @@ var RequestError = class extends Error {
|
|||
};
|
||||
|
||||
//
|
||||
var VERSION2 = "10.0.8";
|
||||
var VERSION2 = "10.0.9";
|
||||
var defaults_default = {
|
||||
headers: {
|
||||
"user-agent": `octokit-request.js/${VERSION2} ${getUserAgent()}`
|
||||
|
|
@ -28728,7 +28764,7 @@ async function getResponseData(response) {
|
|||
if (!contentType) {
|
||||
return response.text().catch(noop);
|
||||
}
|
||||
const mimetype = (0, import_fast_content_type_parse.safeParse)(contentType);
|
||||
const mimetype = (0, import_content_type.parse)(contentType);
|
||||
if (isJSONResponse(mimetype)) {
|
||||
let text = "";
|
||||
try {
|
||||
|
|
@ -36225,9 +36261,9 @@ var YargsInstance = class {
|
|||
__classPrivateFieldSet(this, _YargsInstance_hasOutput, true, "f");
|
||||
if (!__classPrivateFieldGet(this, _YargsInstance_usage, "f").hasCachedHelpMessage()) {
|
||||
if (!this.parsed) {
|
||||
const parse3 = this[kRunYargsParserAndExecuteCommands](__classPrivateFieldGet(this, _YargsInstance_processArgs, "f"), void 0, void 0, 0, true);
|
||||
if (isPromise(parse3)) {
|
||||
return parse3.then(() => {
|
||||
const parse4 = this[kRunYargsParserAndExecuteCommands](__classPrivateFieldGet(this, _YargsInstance_processArgs, "f"), void 0, void 0, 0, true);
|
||||
if (isPromise(parse4)) {
|
||||
return parse4.then(() => {
|
||||
return __classPrivateFieldGet(this, _YargsInstance_usage, "f").help();
|
||||
});
|
||||
}
|
||||
|
|
@ -36571,9 +36607,9 @@ var YargsInstance = class {
|
|||
__classPrivateFieldSet(this, _YargsInstance_hasOutput, true, "f");
|
||||
if (!__classPrivateFieldGet(this, _YargsInstance_usage, "f").hasCachedHelpMessage()) {
|
||||
if (!this.parsed) {
|
||||
const parse3 = this[kRunYargsParserAndExecuteCommands](__classPrivateFieldGet(this, _YargsInstance_processArgs, "f"), void 0, void 0, 0, true);
|
||||
if (isPromise(parse3)) {
|
||||
parse3.then(() => {
|
||||
const parse4 = this[kRunYargsParserAndExecuteCommands](__classPrivateFieldGet(this, _YargsInstance_processArgs, "f"), void 0, void 0, 0, true);
|
||||
if (isPromise(parse4)) {
|
||||
parse4.then(() => {
|
||||
__classPrivateFieldGet(this, _YargsInstance_usage, "f").showHelp(level);
|
||||
});
|
||||
return this;
|
||||
|
|
@ -37450,7 +37486,7 @@ 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_parse2 = __commonJS2({
|
||||
var require_fast_content_type_parse = __commonJS2({
|
||||
""(exports, module) {
|
||||
"use strict";
|
||||
var NullObject = function NullObject2() {
|
||||
|
|
@ -46702,7 +46738,7 @@ var require_public_api = __commonJS2({
|
|||
exports.stringify = stringify;
|
||||
}
|
||||
});
|
||||
var require_dist = __commonJS2({
|
||||
var require_dist2 = __commonJS2({
|
||||
""(exports) {
|
||||
"use strict";
|
||||
var composer = require_composer();
|
||||
|
|
@ -47098,7 +47134,7 @@ function expand2(template, context3) {
|
|||
return template.replace(/\/$/, "");
|
||||
}
|
||||
}
|
||||
function parse2(options) {
|
||||
function parse3(options) {
|
||||
let method = options.method.toUpperCase();
|
||||
let url = (options.url || "/").replace(/:([a-z]\w+)/g, "{$1}");
|
||||
let headers = Object.assign({}, options.headers);
|
||||
|
|
@ -47162,7 +47198,7 @@ function parse2(options) {
|
|||
);
|
||||
}
|
||||
function endpointWithDefaults2(defaults2, route, options) {
|
||||
return parse2(merge2(defaults2, route, options));
|
||||
return parse3(merge2(defaults2, route, options));
|
||||
}
|
||||
function withDefaults4(oldDefaults, newDefaults) {
|
||||
const DEFAULTS22 = merge2(oldDefaults, newDefaults);
|
||||
|
|
@ -47171,11 +47207,11 @@ function withDefaults4(oldDefaults, newDefaults) {
|
|||
DEFAULTS: DEFAULTS22,
|
||||
defaults: withDefaults4.bind(null, DEFAULTS22),
|
||||
merge: merge2.bind(null, DEFAULTS22),
|
||||
parse: parse2
|
||||
parse: parse3
|
||||
});
|
||||
}
|
||||
var endpoint2 = withDefaults4(null, DEFAULTS2);
|
||||
var import_fast_content_type_parse2 = __toESM2(require_fast_content_type_parse2());
|
||||
var import_fast_content_type_parse = __toESM2(require_fast_content_type_parse());
|
||||
var intRegex2 = /^-?\d+$/;
|
||||
var noiseValue2 = /^-?\d+n+$/;
|
||||
var originalStringify2 = JSON.stringify;
|
||||
|
|
@ -47451,7 +47487,7 @@ async function getResponseData2(response) {
|
|||
if (!contentType) {
|
||||
return response.text().catch(noop3);
|
||||
}
|
||||
const mimetype = (0, import_fast_content_type_parse2.safeParse)(contentType);
|
||||
const mimetype = (0, import_fast_content_type_parse.safeParse)(contentType);
|
||||
if (isJSONResponse2(mimetype)) {
|
||||
let text = "";
|
||||
try {
|
||||
|
|
@ -51418,7 +51454,7 @@ var allLabels = {
|
|||
...miscLabels
|
||||
};
|
||||
var import_which = __toESM2(require_lib2());
|
||||
var import_yaml = __toESM2(require_dist());
|
||||
var import_yaml = __toESM2(require_dist2());
|
||||
|
||||
//
|
||||
var require6 = __cjsCompatRequire_ngDev5(import.meta.url);
|
||||
|
|
@ -51583,6 +51619,13 @@ undici/lib/web/fetch/body.js:
|
|||
undici/lib/web/websocket/frame.js:
|
||||
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
||||
|
||||
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 *)
|
||||
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -339,8 +339,8 @@ packages:
|
|||
'@types/jasminewd2@2.0.13':
|
||||
resolution: {integrity: sha512-aJ3wj8tXMpBrzQ5ghIaqMisD8C3FIrcO6sDKHqFbuqAsI7yOxj0fA7MrRCPLZHIVUjERIwsMmGn/vB0UQ9u0Hg==}
|
||||
|
||||
'@types/node@25.6.2':
|
||||
resolution: {integrity: sha512-sokuT28dxf9JT5Kady1fsXOvI4HVpjZa95NKT5y9PNTIrs2AsobR4GFAA90ZG8M+nxVRLysCXsVj6eGC7Vbrlw==}
|
||||
'@types/node@25.8.0':
|
||||
resolution: {integrity: sha512-TCFSk8IZh+iLX1xtksoBVtdmgL+1IX0fC9BeU4QqFSuNdN/K+HUlhqOzEmSYYpZUVsLYcPqc9KX+60iDuninSQ==}
|
||||
|
||||
'@types/q@0.0.32':
|
||||
resolution: {integrity: sha512-qYi3YV9inU/REEfxwVcGZzbS3KG/Xs90lv0Pr+lDtuVjBPGd1A+eciXzVSaRvLify132BfcvhvEjeVahrUl0Ug==}
|
||||
|
|
@ -434,8 +434,8 @@ packages:
|
|||
resolution: {integrity: sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==}
|
||||
engines: {node: ^4.5.0 || >= 5.9}
|
||||
|
||||
baseline-browser-mapping@2.10.29:
|
||||
resolution: {integrity: sha512-Asa2krT+XTPZINCS+2QcyS8WTkObE77RwkydwF7h6DmnKqbvlalz93m/dnphUyCa6SWSP51VgtEUf2FN+gelFQ==}
|
||||
baseline-browser-mapping@2.10.30:
|
||||
resolution: {integrity: sha512-xjOFN16Ha1+Rz4nFYKqHU/LSB+gx/Vi3yQLX7r7sAW+Wa+8hhF2h4pvqTrTMc8+WcDBEunnUurr46Jvv0jk3Vg==}
|
||||
engines: {node: '>=6.0.0'}
|
||||
hasBin: true
|
||||
|
||||
|
|
@ -492,8 +492,8 @@ packages:
|
|||
resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
|
||||
engines: {node: '>=6'}
|
||||
|
||||
caniuse-lite@1.0.30001792:
|
||||
resolution: {integrity: sha512-hVLMUZFgR4JJ6ACt1uEESvQN1/dBVqPAKY0hgrV70eN3391K6juAfTjKZLKvOMsx8PxA7gsY1/tLMMTcfFLLpw==}
|
||||
caniuse-lite@1.0.30001793:
|
||||
resolution: {integrity: sha512-iwSsYWaCOoh26cV8NwNRViHlrfUvYsHDfRVcbtmw0Kg6PJIZZXwMkj1442FYLBGkeUf1juAsU3DTfxW579mrPA==}
|
||||
|
||||
caseless@0.12.0:
|
||||
resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==}
|
||||
|
|
@ -654,8 +654,8 @@ packages:
|
|||
ee-first@1.1.1:
|
||||
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
|
||||
|
||||
electron-to-chromium@1.5.353:
|
||||
resolution: {integrity: sha512-kOrWphBi8TOZyiJZqsgqIle0lw+tzmnQK83pV9dZUd01Nm2POECSyFQMAuarzZdYqQW7FH9RaYOuaRo3h+bQ3w==}
|
||||
electron-to-chromium@1.5.358:
|
||||
resolution: {integrity: sha512-EO7tKm3QxRqTs1lSuPXzl6yRAwznehp0AH9OoMOIC+4mQzTFday8FJCO5KU6J/TFSQXEOahNq4vTKpz1jmCVOA==}
|
||||
|
||||
emoji-regex@8.0.0:
|
||||
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
|
||||
|
|
@ -1030,8 +1030,8 @@ packages:
|
|||
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
|
||||
engines: {node: '>= 0.6'}
|
||||
|
||||
node-releases@2.0.38:
|
||||
resolution: {integrity: sha512-3qT/88Y3FbH/Kx4szpQQ4HzUbVrHPKTLVpVocKiLfoYvw9XSGOX2FmD2d6DrXbVYyAQTF2HeF6My8jmzx7/CRw==}
|
||||
node-releases@2.0.44:
|
||||
resolution: {integrity: sha512-5WUyunoPMsvvEhS8AxHtRzP+oA8UCkJ7YRxatWKjngndhDGLiqEVAQKWjFAiAiuL8zMRGzGSJxFnLetoa43qGQ==}
|
||||
|
||||
normalize-path@3.0.0:
|
||||
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
|
||||
|
|
@ -1380,8 +1380,8 @@ packages:
|
|||
resolution: {integrity: sha512-LbBDqdIC5s8iROCUjMbW1f5dJQTEFB1+KO9ogbvlb3nm9n4YHa5p4KTvFPWvh2Hs8gZMBuiB1/8+pdfe/tDPug==}
|
||||
hasBin: true
|
||||
|
||||
undici-types@7.19.2:
|
||||
resolution: {integrity: sha512-qYVnV5OEm2AW8cJMCpdV20CDyaN3g0AjDlOGf1OW4iaDEx8MwdtChUp4zu4H0VP3nDRF/8RKWH+IPp9uW0YGZg==}
|
||||
undici-types@7.24.6:
|
||||
resolution: {integrity: sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg==}
|
||||
|
||||
universalify@0.1.2:
|
||||
resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
|
||||
|
|
@ -1732,7 +1732,7 @@ snapshots:
|
|||
|
||||
'@types/cors@2.8.19':
|
||||
dependencies:
|
||||
'@types/node': 25.6.2
|
||||
'@types/node': 25.8.0
|
||||
|
||||
'@types/estree@1.0.8': {}
|
||||
|
||||
|
|
@ -1744,9 +1744,9 @@ snapshots:
|
|||
dependencies:
|
||||
'@types/jasmine': 6.0.0
|
||||
|
||||
'@types/node@25.6.2':
|
||||
'@types/node@25.8.0':
|
||||
dependencies:
|
||||
undici-types: 7.19.2
|
||||
undici-types: 7.24.6
|
||||
|
||||
'@types/q@0.0.32': {}
|
||||
|
||||
|
|
@ -1756,7 +1756,7 @@ snapshots:
|
|||
|
||||
'@types/ws@8.18.1':
|
||||
dependencies:
|
||||
'@types/node': 25.6.2
|
||||
'@types/node': 25.8.0
|
||||
|
||||
accepts@1.3.8:
|
||||
dependencies:
|
||||
|
|
@ -1827,7 +1827,7 @@ snapshots:
|
|||
|
||||
base64id@2.0.0: {}
|
||||
|
||||
baseline-browser-mapping@2.10.29: {}
|
||||
baseline-browser-mapping@2.10.30: {}
|
||||
|
||||
batch@0.6.1: {}
|
||||
|
||||
|
|
@ -1909,10 +1909,10 @@ snapshots:
|
|||
|
||||
browserslist@4.28.2:
|
||||
dependencies:
|
||||
baseline-browser-mapping: 2.10.29
|
||||
caniuse-lite: 1.0.30001792
|
||||
electron-to-chromium: 1.5.353
|
||||
node-releases: 2.0.38
|
||||
baseline-browser-mapping: 2.10.30
|
||||
caniuse-lite: 1.0.30001793
|
||||
electron-to-chromium: 1.5.358
|
||||
node-releases: 2.0.44
|
||||
update-browserslist-db: 1.2.3(browserslist@4.28.2)
|
||||
|
||||
browserstack@1.6.1:
|
||||
|
|
@ -1927,7 +1927,7 @@ snapshots:
|
|||
|
||||
camelcase@5.3.1: {}
|
||||
|
||||
caniuse-lite@1.0.30001792: {}
|
||||
caniuse-lite@1.0.30001793: {}
|
||||
|
||||
caseless@0.12.0: {}
|
||||
|
||||
|
|
@ -2084,7 +2084,7 @@ snapshots:
|
|||
|
||||
ee-first@1.1.1: {}
|
||||
|
||||
electron-to-chromium@1.5.353: {}
|
||||
electron-to-chromium@1.5.358: {}
|
||||
|
||||
emoji-regex@8.0.0: {}
|
||||
|
||||
|
|
@ -2107,7 +2107,7 @@ snapshots:
|
|||
engine.io@6.6.7:
|
||||
dependencies:
|
||||
'@types/cors': 2.8.19
|
||||
'@types/node': 25.6.2
|
||||
'@types/node': 25.8.0
|
||||
'@types/ws': 8.18.1
|
||||
accepts: 1.3.8
|
||||
base64id: 2.0.0
|
||||
|
|
@ -2458,7 +2458,7 @@ snapshots:
|
|||
|
||||
negotiator@0.6.3: {}
|
||||
|
||||
node-releases@2.0.38: {}
|
||||
node-releases@2.0.44: {}
|
||||
|
||||
normalize-path@3.0.0: {}
|
||||
|
||||
|
|
@ -2869,7 +2869,7 @@ snapshots:
|
|||
|
||||
ua-parser-js@1.0.41: {}
|
||||
|
||||
undici-types@7.19.2: {}
|
||||
undici-types@7.24.6: {}
|
||||
|
||||
universalify@0.1.2: {}
|
||||
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -52,7 +52,7 @@ importers:
|
|||
version: 6.0.0
|
||||
'@types/node':
|
||||
specifier: ^20.14.8
|
||||
version: 20.19.40
|
||||
version: 20.19.41
|
||||
rxjs:
|
||||
specifier: ^7.0.0
|
||||
version: 7.8.2
|
||||
|
|
@ -68,8 +68,8 @@ packages:
|
|||
'@types/jasmine@6.0.0':
|
||||
resolution: {integrity: sha512-18lgGsLmEh3VJk9eZ5wAjTISxdqzl6YOwu8UdMpolajN57QOCNbl+AbHUd+Yu9ItrsFdB+c8LSZSGNg8nHaguw==}
|
||||
|
||||
'@types/node@20.19.40':
|
||||
resolution: {integrity: sha512-xxx6M2IpSTnnKcR0cMvIiohkiCx20/oRPtWGbenFygKCGl3zqUzdNjQ/1V4solq1LU+dgv0nQzeGOuqkqZGg0Q==}
|
||||
'@types/node@20.19.41':
|
||||
resolution: {integrity: sha512-ECymXOukMnOoVkC2bb1Vc/w/836DXncOg5m8Xj1RH7xSHZJWNYY6Zh7EH477vcnD5egKNNfy2RpNOmuChhFPgQ==}
|
||||
|
||||
rxjs@7.8.2:
|
||||
resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==}
|
||||
|
|
@ -92,7 +92,7 @@ snapshots:
|
|||
|
||||
'@types/jasmine@6.0.0': {}
|
||||
|
||||
'@types/node@20.19.40':
|
||||
'@types/node@20.19.41':
|
||||
dependencies:
|
||||
undici-types: 6.21.0
|
||||
|
||||
|
|
|
|||
1690
pnpm-lock.yaml
1690
pnpm-lock.yaml
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue