Skip to content

Commit 5de39b5

Browse files
committed
build: lock file maintenance
See associated pull request for more information.
1 parent c7a1892 commit 5de39b5

File tree

24 files changed

+3999
-3984
lines changed

24 files changed

+3999
-3984
lines changed

.github/actions/deploy-docs-site/main.js

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10481,7 +10481,7 @@ var JSONStringify = (value, replacer, space) => {
1048110481
const convertedToCustomJSON = originalStringify(
1048210482
value,
1048310483
(key, value2) => {
10484-
const isNoise = typeof value2 === "string" && Boolean(value2.match(noiseValue));
10484+
const isNoise = typeof value2 === "string" && noiseValue.test(value2);
1048510485
if (isNoise)
1048610486
return value2.toString() + "n";
1048710487
if (typeof value2 === "bigint")
@@ -10501,12 +10501,29 @@ var JSONStringify = (value, replacer, space) => {
1050110501
const denoisedJSON = processedJSON.replace(noiseStringify, "$1$2$3");
1050210502
return denoisedJSON;
1050310503
};
10504-
var isContextSourceSupported = () => JSON.parse("1", (_, __, context3) => !!context3 && context3.source === "1");
10504+
var featureCache = /* @__PURE__ */ new Map();
10505+
var isContextSourceSupported = () => {
10506+
const parseFingerprint = JSON.parse.toString();
10507+
if (featureCache.has(parseFingerprint)) {
10508+
return featureCache.get(parseFingerprint);
10509+
}
10510+
try {
10511+
const result = JSON.parse(
10512+
"1",
10513+
(_, __, context3) => !!context3?.source && context3.source === "1"
10514+
);
10515+
featureCache.set(parseFingerprint, result);
10516+
return result;
10517+
} catch {
10518+
featureCache.set(parseFingerprint, false);
10519+
return false;
10520+
}
10521+
};
1050510522
var convertMarkedBigIntsReviver = (key, value, context3, userReviver) => {
10506-
const isCustomFormatBigInt = typeof value === "string" && value.match(customFormat);
10523+
const isCustomFormatBigInt = typeof value === "string" && customFormat.test(value);
1050710524
if (isCustomFormatBigInt)
1050810525
return BigInt(value.slice(0, -1));
10509-
const isNoiseValue = typeof value === "string" && value.match(noiseValue);
10526+
const isNoiseValue = typeof value === "string" && noiseValue.test(value);
1051010527
if (isNoiseValue)
1051110528
return value.slice(0, -1);
1051210529
if (typeof userReviver !== "function")
@@ -10538,7 +10555,7 @@ var JSONParse = (text, reviver) => {
1053810555
stringsOrLargeNumbers,
1053910556
(text2, digits, fractional, exponential) => {
1054010557
const isString = text2[0] === '"';
10541-
const isNoise = isString && Boolean(text2.match(noiseValueWithQuotes));
10558+
const isNoise = isString && noiseValueWithQuotes.test(text2);
1054210559
if (isNoise)
1054310560
return text2.substring(0, text2.length - 1) + 'n"';
1054410561
const isFractionalOrExponential = fractional || exponential;

adev/src/content/tutorials/deferrable-views/common/package-lock.json

Lines changed: 115 additions & 115 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

adev/src/content/tutorials/first-app/common/package-lock.json

Lines changed: 115 additions & 115 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

adev/src/content/tutorials/homepage/package-lock.json

Lines changed: 115 additions & 115 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

adev/src/content/tutorials/learn-angular/common/package-lock.json

Lines changed: 115 additions & 115 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

adev/src/content/tutorials/playground/common/package-lock.json

Lines changed: 115 additions & 115 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

adev/src/content/tutorials/signal-forms/common/package-lock.json

Lines changed: 115 additions & 115 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

adev/src/content/tutorials/signals/common/package-lock.json

Lines changed: 115 additions & 115 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

integration/animations/pnpm-lock.yaml

Lines changed: 215 additions & 215 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

integration/cli-hello-world-ivy-i18n/pnpm-lock.yaml

Lines changed: 195 additions & 195 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)