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
03c04d4c83
commit
c5a3bbbd91
16 changed files with 233 additions and 144 deletions
20
.github/actions/deploy-docs-site/main.js
vendored
20
.github/actions/deploy-docs-site/main.js
vendored
|
|
@ -18753,7 +18753,7 @@ var require_Alias = __commonJS({
|
|||
toJS.toJS(source, null, ctx);
|
||||
data = anchors2.get(source);
|
||||
}
|
||||
if (!data || data.res === void 0) {
|
||||
if (data?.res === void 0) {
|
||||
const msg = "This should not happen: Alias anchor was not resolved?";
|
||||
throw new ReferenceError(msg);
|
||||
}
|
||||
|
|
@ -19703,7 +19703,7 @@ ${indent}:`;
|
|||
${stringifyComment.indentComment(cs, ctx.indent)}`;
|
||||
}
|
||||
if (valueStr === "" && !ctx.inFlow) {
|
||||
if (ws === "\n")
|
||||
if (ws === "\n" && valueComment)
|
||||
ws = "\n\n";
|
||||
} else {
|
||||
ws += `
|
||||
|
|
@ -20448,7 +20448,7 @@ var require_stringifyNumber = __commonJS({
|
|||
const num = typeof value === "number" ? value : Number(value);
|
||||
if (!isFinite(num))
|
||||
return isNaN(num) ? ".nan" : num < 0 ? "-.inf" : ".inf";
|
||||
let n = JSON.stringify(value);
|
||||
let n = Object.is(value, -0) ? "-0" : JSON.stringify(value);
|
||||
if (!format3 && minFractionDigits && (!tag || tag === "tag:yaml.org,2002:float") && /^\d/.test(n)) {
|
||||
let i = n.indexOf(".");
|
||||
if (i < 0) {
|
||||
|
|
@ -21816,7 +21816,7 @@ var require_errors = __commonJS({
|
|||
if (/[^ ]/.test(lineStr)) {
|
||||
let count = 1;
|
||||
const end = error.linePos[1];
|
||||
if (end && end.line === line && end.col > col) {
|
||||
if (end?.line === line && end.col > col) {
|
||||
count = Math.max(1, Math.min(end.col - col, 80 - ci));
|
||||
}
|
||||
const pointer = " ".repeat(ci) + "^".repeat(count);
|
||||
|
|
@ -22178,7 +22178,7 @@ var require_resolve_block_seq = __commonJS({
|
|||
});
|
||||
if (!props.found) {
|
||||
if (props.anchor || props.tag || value) {
|
||||
if (value && value.type === "block-seq")
|
||||
if (value?.type === "block-seq")
|
||||
onError(props.end, "BAD_INDENT", "All sequence items must start at the same column");
|
||||
else
|
||||
onError(offset, "MISSING_CHAR", "Sequence item without - indicator");
|
||||
|
|
@ -22376,7 +22376,7 @@ var require_resolve_flow_collection = __commonJS({
|
|||
onError(valueProps.found, "KEY_OVER_1024_CHARS", "The : indicator must be at most 1024 chars after the start of an implicit flow sequence key");
|
||||
}
|
||||
} else if (value) {
|
||||
if ("source" in value && value.source && value.source[0] === ":")
|
||||
if ("source" in value && value.source?.[0] === ":")
|
||||
onError(value, "MISSING_CHAR", `Missing space after : in ${fcName}`);
|
||||
else
|
||||
onError(valueProps.start, "MISSING_CHAR", `Missing , or : between ${fcName} items`);
|
||||
|
|
@ -22413,7 +22413,7 @@ var require_resolve_flow_collection = __commonJS({
|
|||
const expectedEnd = isMap ? "}" : "]";
|
||||
const [ce, ...ee] = fc.end;
|
||||
let cePos = offset;
|
||||
if (ce && ce.source === expectedEnd)
|
||||
if (ce?.source === expectedEnd)
|
||||
cePos = ce.offset + ce.source.length;
|
||||
else {
|
||||
const name = fcName[0].toUpperCase() + fcName.substring(1);
|
||||
|
|
@ -22480,7 +22480,7 @@ var require_compose_collection = __commonJS({
|
|||
let tag = ctx.schema.tags.find((t) => t.tag === tagName && t.collection === expType);
|
||||
if (!tag) {
|
||||
const kt = ctx.schema.knownTags[tagName];
|
||||
if (kt && kt.collection === expType) {
|
||||
if (kt?.collection === expType) {
|
||||
ctx.schema.tags.push(Object.assign({}, kt, { default: false }));
|
||||
tag = kt;
|
||||
} else {
|
||||
|
|
@ -24570,7 +24570,7 @@ var require_parser = __commonJS({
|
|||
}
|
||||
*step() {
|
||||
const top2 = this.peek(1);
|
||||
if (this.type === "doc-end" && (!top2 || top2.type !== "doc-end")) {
|
||||
if (this.type === "doc-end" && top2?.type !== "doc-end") {
|
||||
while (this.stack.length > 0)
|
||||
yield* this.pop();
|
||||
this.stack.push({
|
||||
|
|
@ -25046,7 +25046,7 @@ var require_parser = __commonJS({
|
|||
do {
|
||||
yield* this.pop();
|
||||
top2 = this.peek(1);
|
||||
} while (top2 && top2.type === "flow-collection");
|
||||
} while (top2?.type === "flow-collection");
|
||||
} else if (fc.end.length === 0) {
|
||||
switch (this.type) {
|
||||
case "comma":
|
||||
|
|
|
|||
4
.github/actions/saucelabs-legacy/action.yml
vendored
4
.github/actions/saucelabs-legacy/action.yml
vendored
|
|
@ -5,9 +5,9 @@ runs:
|
|||
using: 'composite'
|
||||
steps:
|
||||
- name: Setup Bazel
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Setup Saucelabs Variables
|
||||
uses: angular/dev-infra/github-actions/saucelabs@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/saucelabs@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Starting Saucelabs tunnel service
|
||||
shell: bash
|
||||
run: ./tools/saucelabs/sauce-service.sh run &
|
||||
|
|
|
|||
8
.github/workflows/adev-preview-build.yml
vendored
8
.github/workflows/adev-preview-build.yml
vendored
|
|
@ -21,17 +21,17 @@ jobs:
|
|||
(github.event.action == 'synchronize' && contains(github.event.pull_request.labels.*.name, 'adev: preview'))
|
||||
steps:
|
||||
- name: Initialize environment
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Setup Bazel
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Setup Bazel RBE
|
||||
uses: angular/dev-infra/github-actions/bazel/configure-remote@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/configure-remote@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Install node modules
|
||||
run: pnpm install --frozen-lockfile
|
||||
- name: Build adev
|
||||
# `snapshot-build` config is used to stamp the exact version with sha in the footer.
|
||||
run: pnpm bazel build //adev:build.production --config=snapshot-build
|
||||
- uses: angular/dev-infra/github-actions/previews/pack-and-upload-artifact@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
- uses: angular/dev-infra/github-actions/previews/pack-and-upload-artifact@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
with:
|
||||
workflow-artifact-name: 'adev-preview'
|
||||
pull-number: '${{github.event.pull_request.number}}'
|
||||
|
|
|
|||
2
.github/workflows/adev-preview-deploy.yml
vendored
2
.github/workflows/adev-preview-deploy.yml
vendored
|
|
@ -40,7 +40,7 @@ jobs:
|
|||
npx -y firebase-tools@latest target:clear --config adev/firebase.json --project ${{env.PREVIEW_PROJECT}} hosting angular-docs
|
||||
npx -y firebase-tools@latest target:apply --config adev/firebase.json --project ${{env.PREVIEW_PROJECT}} hosting angular-docs ${{env.PREVIEW_SITE}}
|
||||
|
||||
- uses: angular/dev-infra/github-actions/previews/upload-artifacts-to-firebase@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
- uses: angular/dev-infra/github-actions/previews/upload-artifacts-to-firebase@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
with:
|
||||
github-token: '${{secrets.GITHUB_TOKEN}}'
|
||||
workflow-artifact-name: 'adev-preview'
|
||||
|
|
|
|||
|
|
@ -16,6 +16,6 @@ jobs:
|
|||
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||
with:
|
||||
persist-credentials: false
|
||||
- uses: angular/dev-infra/github-actions/branch-manager@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
- uses: angular/dev-infra/github-actions/branch-manager@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
with:
|
||||
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
|
||||
|
|
|
|||
2
.github/workflows/benchmark-compare.yml
vendored
2
.github/workflows/benchmark-compare.yml
vendored
|
|
@ -38,7 +38,7 @@ jobs:
|
|||
|
||||
- run: pnpm install --frozen-lockfile
|
||||
|
||||
- uses: angular/dev-infra/github-actions/bazel/configure-remote@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
- uses: angular/dev-infra/github-actions/bazel/configure-remote@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
with:
|
||||
bazelrc: ./.bazelrc.user
|
||||
|
||||
|
|
|
|||
50
.github/workflows/ci.yml
vendored
50
.github/workflows/ci.yml
vendored
|
|
@ -21,7 +21,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Initialize environment
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Install node modules
|
||||
run: pnpm install --frozen-lockfile
|
||||
- name: Check code lint
|
||||
|
|
@ -39,13 +39,13 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Initialize environment
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
with:
|
||||
disable-package-manager-cache: true
|
||||
- name: Setup Bazel
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Setup Bazel RBE
|
||||
uses: angular/dev-infra/github-actions/bazel/configure-remote@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/configure-remote@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
with:
|
||||
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
|
||||
- name: Install node modules
|
||||
|
|
@ -67,11 +67,11 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Initialize environment
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Setup Bazel
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Setup Bazel Remote Caching
|
||||
uses: angular/dev-infra/github-actions/bazel/configure-remote@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/configure-remote@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
with:
|
||||
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
|
||||
- name: Install node modules
|
||||
|
|
@ -83,11 +83,11 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Initialize environment
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Setup Bazel
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Setup Bazel Remote Caching
|
||||
uses: angular/dev-infra/github-actions/bazel/configure-remote@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/configure-remote@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
with:
|
||||
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
|
||||
- name: Install node modules
|
||||
|
|
@ -100,11 +100,11 @@ jobs:
|
|||
labels: ubuntu-latest
|
||||
steps:
|
||||
- name: Initialize environment
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Setup Bazel
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Setup Bazel RBE
|
||||
uses: angular/dev-infra/github-actions/bazel/configure-remote@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/configure-remote@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
with:
|
||||
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
|
||||
- name: Install node modules
|
||||
|
|
@ -119,11 +119,11 @@ jobs:
|
|||
labels: ubuntu-latest
|
||||
steps:
|
||||
- name: Initialize environment
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Setup Bazel
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Setup Bazel RBE
|
||||
uses: angular/dev-infra/github-actions/bazel/configure-remote@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/configure-remote@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
with:
|
||||
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
|
||||
- name: Install node modules
|
||||
|
|
@ -136,11 +136,11 @@ jobs:
|
|||
labels: ubuntu-latest
|
||||
steps:
|
||||
- name: Initialize environment
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Setup Bazel
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Setup Bazel RBE
|
||||
uses: angular/dev-infra/github-actions/bazel/configure-remote@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/configure-remote@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Install node modules
|
||||
run: pnpm install --frozen-lockfile
|
||||
- run: echo "https://${{secrets.SNAPSHOT_BUILDS_GITHUB_TOKEN}}:@github.com" > ${HOME}/.git_credentials
|
||||
|
|
@ -152,11 +152,11 @@ jobs:
|
|||
labels: ubuntu-latest
|
||||
steps:
|
||||
- name: Initialize environment
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Setup Bazel
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Setup Bazel RBE
|
||||
uses: angular/dev-infra/github-actions/bazel/configure-remote@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/configure-remote@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
with:
|
||||
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
|
||||
- name: Install node modules
|
||||
|
|
@ -206,11 +206,11 @@ jobs:
|
|||
runs-on: ubuntu-latest-8core
|
||||
steps:
|
||||
- name: Initialize environment
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Setup Bazel
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Setup Bazel RBE
|
||||
uses: angular/dev-infra/github-actions/bazel/configure-remote@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/configure-remote@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Install node modules
|
||||
run: pnpm install --frozen-lockfile
|
||||
- name: Build adev
|
||||
|
|
|
|||
4
.github/workflows/dev-infra.yml
vendored
4
.github/workflows/dev-infra.yml
vendored
|
|
@ -13,13 +13,13 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||
- uses: angular/dev-infra/github-actions/pull-request-labeling@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
- uses: angular/dev-infra/github-actions/pull-request-labeling@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
with:
|
||||
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
|
||||
post_approval_changes:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||
- uses: angular/dev-infra/github-actions/post-approval-changes@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
- uses: angular/dev-infra/github-actions/post-approval-changes@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
with:
|
||||
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
|
||||
|
|
|
|||
2
.github/workflows/google-internal-tests.yml
vendored
2
.github/workflows/google-internal-tests.yml
vendored
|
|
@ -14,7 +14,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||
- uses: angular/dev-infra/github-actions/google-internal-tests@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
- uses: angular/dev-infra/github-actions/google-internal-tests@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
with:
|
||||
run-tests-guide-url: http://go/angular-g3sync-start
|
||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
|
|
|||
8
.github/workflows/manual.yml
vendored
8
.github/workflows/manual.yml
vendored
|
|
@ -13,15 +13,15 @@ jobs:
|
|||
JOBS: 2
|
||||
steps:
|
||||
- name: Initialize environment
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Install node modules
|
||||
run: pnpm install --frozen-lockfile
|
||||
- name: Setup Bazel
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Setup Bazel Remote Caching
|
||||
uses: angular/dev-infra/github-actions/bazel/configure-remote@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/configure-remote@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Setup Saucelabs Variables
|
||||
uses: angular/dev-infra/github-actions/saucelabs@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/saucelabs@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Set up Sauce Tunnel Daemon
|
||||
run: pnpm bazel run //tools/saucelabs-daemon/background-service -- $JOBS &
|
||||
env:
|
||||
|
|
|
|||
2
.github/workflows/merge-ready-status.yml
vendored
2
.github/workflows/merge-ready-status.yml
vendored
|
|
@ -9,6 +9,6 @@ jobs:
|
|||
status:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: angular/dev-infra/github-actions/unified-status-check@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
- uses: angular/dev-infra/github-actions/unified-status-check@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
with:
|
||||
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
|
||||
|
|
|
|||
6
.github/workflows/perf.yml
vendored
6
.github/workflows/perf.yml
vendored
|
|
@ -21,7 +21,7 @@ jobs:
|
|||
workflows: ${{ steps.workflows.outputs.workflows }}
|
||||
steps:
|
||||
- name: Initialize environment
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Install node modules
|
||||
run: pnpm install --frozen-lockfile
|
||||
- id: workflows
|
||||
|
|
@ -36,9 +36,9 @@ jobs:
|
|||
workflow: ${{ fromJSON(needs.list.outputs.workflows) }}
|
||||
steps:
|
||||
- name: Initialize environment
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Setup Bazel
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Install node modules
|
||||
run: pnpm install --frozen-lockfile
|
||||
# We utilize the google-github-actions/auth action to allow us to get an active credential using workflow
|
||||
|
|
|
|||
40
.github/workflows/pr.yml
vendored
40
.github/workflows/pr.yml
vendored
|
|
@ -19,7 +19,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Initialize environment
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Install node modules
|
||||
run: pnpm install --frozen-lockfile
|
||||
- name: Check code lint
|
||||
|
|
@ -37,7 +37,7 @@ jobs:
|
|||
- name: Check code format
|
||||
run: pnpm ng-dev format changed --check ${{ github.event.pull_request.base.sha }}
|
||||
- name: Check Package Licenses
|
||||
uses: angular/dev-infra/github-actions/linting/licenses@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/linting/licenses@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
with:
|
||||
allow-dependencies-licenses: 'pkg:npm/google-protobuf@'
|
||||
|
||||
|
|
@ -45,13 +45,13 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Initialize environment
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
with:
|
||||
disable-package-manager-cache: true
|
||||
- name: Setup Bazel
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Setup Bazel RBE
|
||||
uses: angular/dev-infra/github-actions/bazel/configure-remote@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/configure-remote@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Install node modules
|
||||
run: pnpm install --frozen-lockfile
|
||||
- name: Run unit tests
|
||||
|
|
@ -71,11 +71,11 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Initialize environment
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Setup Bazel
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Setup Bazel Remote Caching
|
||||
uses: angular/dev-infra/github-actions/bazel/configure-remote@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/configure-remote@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Install node modules
|
||||
run: pnpm install --frozen-lockfile
|
||||
- name: Run CI tests for framework
|
||||
|
|
@ -95,11 +95,11 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Initialize environment
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Setup Bazel
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Setup Bazel Remote Caching
|
||||
uses: angular/dev-infra/github-actions/bazel/configure-remote@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/configure-remote@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Install node modules
|
||||
run: pnpm install --frozen-lockfile
|
||||
- name: Run integration CI tests for framework
|
||||
|
|
@ -110,11 +110,11 @@ jobs:
|
|||
labels: ubuntu-latest
|
||||
steps:
|
||||
- name: Initialize environment
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Setup Bazel
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Setup Bazel RBE
|
||||
uses: angular/dev-infra/github-actions/bazel/configure-remote@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/configure-remote@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Install node modules
|
||||
run: pnpm install --frozen-lockfile
|
||||
- name: Run tests
|
||||
|
|
@ -127,11 +127,11 @@ jobs:
|
|||
labels: ubuntu-latest
|
||||
steps:
|
||||
- name: Initialize environment
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Setup Bazel
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Setup Bazel RBE
|
||||
uses: angular/dev-infra/github-actions/bazel/configure-remote@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/configure-remote@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Install node modules
|
||||
run: pnpm install --frozen-lockfile
|
||||
- name: Run tests
|
||||
|
|
@ -142,11 +142,11 @@ jobs:
|
|||
labels: ubuntu-latest
|
||||
steps:
|
||||
- name: Initialize environment
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Setup Bazel
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/setup@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Setup Bazel RBE
|
||||
uses: angular/dev-infra/github-actions/bazel/configure-remote@95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
uses: angular/dev-infra/github-actions/bazel/configure-remote@eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
- name: Install node modules
|
||||
run: pnpm install --frozen-lockfile
|
||||
- run: |
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ git_override(
|
|||
bazel_dep(name = "devinfra")
|
||||
git_override(
|
||||
module_name = "devinfra",
|
||||
commit = "95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae",
|
||||
commit = "eac707321ac5a964ebdd8212767ef0f45bd6a618",
|
||||
remote = "https://github.com/angular/dev-infra.git",
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -163,7 +163,7 @@
|
|||
"@actions/core": "^1.10.0",
|
||||
"@actions/github": "^6.0.0",
|
||||
"@angular-devkit/architect-cli": "0.2101.0-next.0",
|
||||
"@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#4c28145df03aff8c74d0a53f4f5602140e4d1a23",
|
||||
"@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#cfd4a8c8386ea78c45d54a09dcef356d6c8e7ddf",
|
||||
"@babel/plugin-proposal-async-generator-functions": "7.20.7",
|
||||
"@babel/plugin-transform-async-generator-functions": "^7.27.1",
|
||||
"@bazel/bazelisk": "^1.7.5",
|
||||
|
|
|
|||
223
pnpm-lock.yaml
223
pnpm-lock.yaml
|
|
@ -23,7 +23,7 @@ importers:
|
|||
dependencies:
|
||||
'@angular-devkit/build-angular':
|
||||
specifier: 21.1.0-next.0
|
||||
version: 21.1.0-next.0(c5bc0fdbba09cbd593e90489895b6169)
|
||||
version: 21.1.0-next.0(6f9d475ec19aa1ca3c883ce44c54bd33)
|
||||
'@angular-devkit/core':
|
||||
specifier: 21.1.0-next.0
|
||||
version: 21.1.0-next.0(chokidar@4.0.3)
|
||||
|
|
@ -38,7 +38,7 @@ importers:
|
|||
version: link:packages/benchpress
|
||||
'@angular/build':
|
||||
specifier: 21.1.0-next.0
|
||||
version: 21.1.0-next.0(703fb57f7d4265c06221da6c3dd7fb98)
|
||||
version: 21.1.0-next.0(2aa42e4d785fd932a253cd0fe914c534)
|
||||
'@angular/cdk':
|
||||
specifier: 21.1.0-next.0
|
||||
version: 21.1.0-next.0(@angular/common@packages+common)(@angular/core@packages+core)(rxjs@7.8.2)
|
||||
|
|
@ -347,8 +347,8 @@ importers:
|
|||
specifier: 0.2101.0-next.0
|
||||
version: 0.2101.0-next.0(chokidar@4.0.3)
|
||||
'@angular/ng-dev':
|
||||
specifier: https://github.com/angular/dev-infra-private-ng-dev-builds.git#4c28145df03aff8c74d0a53f4f5602140e4d1a23
|
||||
version: https://codeload.github.com/angular/dev-infra-private-ng-dev-builds/tar.gz/4c28145df03aff8c74d0a53f4f5602140e4d1a23(@modelcontextprotocol/sdk@1.22.0)
|
||||
specifier: https://github.com/angular/dev-infra-private-ng-dev-builds.git#cfd4a8c8386ea78c45d54a09dcef356d6c8e7ddf
|
||||
version: https://codeload.github.com/angular/dev-infra-private-ng-dev-builds/tar.gz/cfd4a8c8386ea78c45d54a09dcef356d6c8e7ddf(@modelcontextprotocol/sdk@1.22.0)
|
||||
'@babel/plugin-proposal-async-generator-functions':
|
||||
specifier: 7.20.7
|
||||
version: 7.20.7(@babel/core@7.28.5)
|
||||
|
|
@ -489,7 +489,7 @@ importers:
|
|||
version: 21.1.0-next.0(@angular/cdk@21.1.0-next.0(@angular/common@packages+common)(@angular/core@packages+core)(rxjs@7.8.2))(@angular/core@packages+core)
|
||||
'@angular/build':
|
||||
specifier: 21.1.0-next.0
|
||||
version: 21.1.0-next.0(2fee5caa4c7a4fbaa19a2f8f50e2bab6)
|
||||
version: 21.1.0-next.0(5f1181e1dc214c8c152154f591bb0743)
|
||||
'@angular/cdk':
|
||||
specifier: 21.1.0-next.0
|
||||
version: 21.1.0-next.0(@angular/common@packages+common)(@angular/core@packages+core)(rxjs@7.8.2)
|
||||
|
|
@ -709,7 +709,7 @@ importers:
|
|||
version: 8.5.6
|
||||
tailwindcss:
|
||||
specifier: 3.4.18
|
||||
version: 3.4.18(tsx@4.20.6)(yaml@2.8.1)
|
||||
version: 3.4.18(tsx@4.21.0)(yaml@2.8.2)
|
||||
|
||||
adev/shared-docs:
|
||||
dependencies:
|
||||
|
|
@ -803,7 +803,7 @@ importers:
|
|||
devDependencies:
|
||||
'@angular/build':
|
||||
specifier: 21.1.0-next.0
|
||||
version: 21.1.0-next.0(2fee5caa4c7a4fbaa19a2f8f50e2bab6)
|
||||
version: 21.1.0-next.0(5f1181e1dc214c8c152154f591bb0743)
|
||||
'@angular/cli':
|
||||
specifier: 21.1.0-next.0
|
||||
version: 21.1.0-next.0(@types/node@24.10.1)(chokidar@4.0.3)
|
||||
|
|
@ -818,7 +818,7 @@ importers:
|
|||
version: 5.9.3
|
||||
vitest:
|
||||
specifier: ^4.0.0
|
||||
version: 4.0.13(@opentelemetry/api@1.9.0)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@27.2.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
|
||||
version: 4.0.13(@opentelemetry/api@1.9.0)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@27.2.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)
|
||||
|
||||
integration:
|
||||
dependencies:
|
||||
|
|
@ -875,7 +875,7 @@ importers:
|
|||
version: link:../packages/benchpress
|
||||
'@angular/build':
|
||||
specifier: 21.1.0-next.0
|
||||
version: 21.1.0-next.0(2fee5caa4c7a4fbaa19a2f8f50e2bab6)
|
||||
version: 21.1.0-next.0(5f1181e1dc214c8c152154f591bb0743)
|
||||
'@angular/common':
|
||||
specifier: workspace:*
|
||||
version: link:../packages/common
|
||||
|
|
@ -1046,7 +1046,7 @@ importers:
|
|||
version: link:../../../animations
|
||||
'@angular/build':
|
||||
specifier: 21.1.0-next.0
|
||||
version: 21.1.0-next.0(2fee5caa4c7a4fbaa19a2f8f50e2bab6)
|
||||
version: 21.1.0-next.0(5f1181e1dc214c8c152154f591bb0743)
|
||||
'@angular/common':
|
||||
specifier: workspace:*
|
||||
version: link:../../../common
|
||||
|
|
@ -1298,7 +1298,7 @@ importers:
|
|||
version: 2.8.1
|
||||
vitest:
|
||||
specifier: ^4.0.0
|
||||
version: 4.0.13(@opentelemetry/api@1.9.0)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@27.2.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
|
||||
version: 4.0.13(@opentelemetry/api@1.9.0)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@27.2.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)
|
||||
|
||||
packages/zone.js/test/typings:
|
||||
dependencies:
|
||||
|
|
@ -1415,7 +1415,7 @@ importers:
|
|||
devDependencies:
|
||||
ng-packagr:
|
||||
specifier: 21.1.0-next.0
|
||||
version: 21.1.0-next.0(@angular/compiler-cli@21.1.0-next.0(@angular/compiler@21.1.0-next.0)(typescript@5.9.3))(tailwindcss@3.4.18(tsx@4.20.6)(yaml@2.8.1))(tslib@2.8.1)(typescript@5.9.3)
|
||||
version: 21.1.0-next.0(@angular/compiler-cli@21.1.0-next.0(@angular/compiler@21.1.0-next.0)(typescript@5.9.3))(tailwindcss@3.4.18(tsx@4.21.0)(yaml@2.8.2))(tslib@2.8.1)(typescript@5.9.3)
|
||||
typescript:
|
||||
specifier: 5.9.3
|
||||
version: 5.9.3
|
||||
|
|
@ -1729,9 +1729,9 @@ packages:
|
|||
'@angular/platform-browser': ^21.0.0-0 || ^21.1.0-0 || ^21.2.0-0 || ^21.3.0-0 || ^22.0.0-0
|
||||
rxjs: ^6.5.3 || ^7.4.0
|
||||
|
||||
'@angular/ng-dev@https://codeload.github.com/angular/dev-infra-private-ng-dev-builds/tar.gz/4c28145df03aff8c74d0a53f4f5602140e4d1a23':
|
||||
resolution: {tarball: https://codeload.github.com/angular/dev-infra-private-ng-dev-builds/tar.gz/4c28145df03aff8c74d0a53f4f5602140e4d1a23}
|
||||
version: 0.0.0-95e3a0ede6dfa1aedd34b03918ad72b18f87e5ae
|
||||
'@angular/ng-dev@https://codeload.github.com/angular/dev-infra-private-ng-dev-builds/tar.gz/cfd4a8c8386ea78c45d54a09dcef356d6c8e7ddf':
|
||||
resolution: {tarball: https://codeload.github.com/angular/dev-infra-private-ng-dev-builds/tar.gz/cfd4a8c8386ea78c45d54a09dcef356d6c8e7ddf}
|
||||
version: 0.0.0-eac707321ac5a964ebdd8212767ef0f45bd6a618
|
||||
hasBin: true
|
||||
|
||||
'@angular/ssr@21.1.0-next.0':
|
||||
|
|
@ -4286,8 +4286,8 @@ packages:
|
|||
resolution: {integrity: sha512-tNe7a6U4rCpxLMBaR0SIYTdjxGdL0Vwb3G1zY8++sPtHSvy7qd54u8CIB0Z+Y6t5tc9pNYMYCMwhE/wdSY7ltg==}
|
||||
engines: {node: '>=18.12'}
|
||||
|
||||
'@pnpm/dependency-path@1001.1.5':
|
||||
resolution: {integrity: sha512-powgYgNzuAdrZK+bx1Vxes5LRFp8ByUCcFsCeo0pQpyFbKpRDFF31FUVSE3CGs61WgL0lTBQr7ZoUSRc+BDrCw==}
|
||||
'@pnpm/dependency-path@1001.1.6':
|
||||
resolution: {integrity: sha512-MQ0l7p0xTNsobggVsT3zXed677WvlDQ25wt0rTQv54Z6fLS/B89pwemUMNhWIKR4q+5WHJjkSlVN2t+W4um+7Q==}
|
||||
engines: {node: '>=18.12'}
|
||||
|
||||
'@pnpm/graceful-fs@1000.0.1':
|
||||
|
|
@ -12172,6 +12172,11 @@ packages:
|
|||
engines: {node: '>=18.0.0'}
|
||||
hasBin: true
|
||||
|
||||
tsx@4.21.0:
|
||||
resolution: {integrity: sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==}
|
||||
engines: {node: '>=18.0.0'}
|
||||
hasBin: true
|
||||
|
||||
tuf-js@4.0.0:
|
||||
resolution: {integrity: sha512-Lq7ieeGvXDXwpoSmOSgLWVdsGGV9J4a77oDTAPe/Ltrqnnm/ETaRlBAQTH5JatEh8KXuE6sddf9qAv1Q2282Hg==}
|
||||
engines: {node: ^20.17.0 || >=22.9.0}
|
||||
|
|
@ -13034,6 +13039,11 @@ packages:
|
|||
engines: {node: '>= 14.6'}
|
||||
hasBin: true
|
||||
|
||||
yaml@2.8.2:
|
||||
resolution: {integrity: sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==}
|
||||
engines: {node: '>= 14.6'}
|
||||
hasBin: true
|
||||
|
||||
yargs-parser@18.1.3:
|
||||
resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==}
|
||||
engines: {node: '>=6'}
|
||||
|
|
@ -13261,13 +13271,13 @@ snapshots:
|
|||
transitivePeerDependencies:
|
||||
- chokidar
|
||||
|
||||
'@angular-devkit/build-angular@21.1.0-next.0(c5bc0fdbba09cbd593e90489895b6169)':
|
||||
'@angular-devkit/build-angular@21.1.0-next.0(6f9d475ec19aa1ca3c883ce44c54bd33)':
|
||||
dependencies:
|
||||
'@ampproject/remapping': 2.3.0
|
||||
'@angular-devkit/architect': 0.2101.0-next.0(chokidar@4.0.3)
|
||||
'@angular-devkit/build-webpack': 0.2101.0-next.0(chokidar@4.0.3)(webpack-dev-server@5.2.2(bufferutil@4.0.9)(utf-8-validate@6.0.5)(webpack@5.103.0(esbuild@0.27.0)))(webpack@5.103.0(esbuild@0.27.0))
|
||||
'@angular-devkit/core': 21.1.0-next.0(chokidar@4.0.3)
|
||||
'@angular/build': 21.1.0-next.0(703fb57f7d4265c06221da6c3dd7fb98)
|
||||
'@angular/build': 21.1.0-next.0(2aa42e4d785fd932a253cd0fe914c534)
|
||||
'@angular/compiler-cli': link:packages/compiler-cli
|
||||
'@babel/core': 7.28.5
|
||||
'@babel/generator': 7.28.5
|
||||
|
|
@ -13330,9 +13340,9 @@ snapshots:
|
|||
jest: 30.2.0(@types/node@20.19.25)(ts-node@10.9.2(@types/node@20.19.25)(typescript@5.9.3))
|
||||
jest-environment-jsdom: 30.2.0(bufferutil@4.0.9)(utf-8-validate@6.0.5)
|
||||
karma: 6.4.4(bufferutil@4.0.9)(utf-8-validate@6.0.5)
|
||||
ng-packagr: 21.1.0-next.0(@angular/compiler-cli@packages+compiler-cli)(tailwindcss@3.4.18(tsx@4.20.6)(yaml@2.8.1))(tslib@2.8.1)(typescript@5.9.3)
|
||||
ng-packagr: 21.1.0-next.0(@angular/compiler-cli@packages+compiler-cli)(tailwindcss@3.4.18(tsx@4.20.6)(yaml@2.8.2))(tslib@2.8.1)(typescript@5.9.3)
|
||||
protractor: 7.0.0
|
||||
tailwindcss: 3.4.18(tsx@4.20.6)(yaml@2.8.1)
|
||||
tailwindcss: 3.4.18(tsx@4.20.6)(yaml@2.8.2)
|
||||
transitivePeerDependencies:
|
||||
- '@angular/compiler'
|
||||
- '@rspack/core'
|
||||
|
|
@ -13392,7 +13402,7 @@ snapshots:
|
|||
'@angular/core': link:packages/core
|
||||
tslib: 2.8.1
|
||||
|
||||
'@angular/build@21.1.0-next.0(2fee5caa4c7a4fbaa19a2f8f50e2bab6)':
|
||||
'@angular/build@21.1.0-next.0(2aa42e4d785fd932a253cd0fe914c534)':
|
||||
dependencies:
|
||||
'@ampproject/remapping': 2.3.0
|
||||
'@angular-devkit/architect': 0.2101.0-next.0(chokidar@4.0.3)
|
||||
|
|
@ -13401,8 +13411,8 @@ snapshots:
|
|||
'@babel/core': 7.28.5
|
||||
'@babel/helper-annotate-as-pure': 7.27.3
|
||||
'@babel/helper-split-export-declaration': 7.24.7
|
||||
'@inquirer/confirm': 5.1.21(@types/node@24.10.1)
|
||||
'@vitejs/plugin-basic-ssl': 2.1.0(vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))
|
||||
'@inquirer/confirm': 5.1.21(@types/node@20.19.25)
|
||||
'@vitejs/plugin-basic-ssl': 2.1.0(vite@7.2.4(@types/node@20.19.25)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.2))
|
||||
beasties: 0.3.5
|
||||
browserslist: 4.28.0
|
||||
esbuild: 0.27.0
|
||||
|
|
@ -13423,7 +13433,7 @@ snapshots:
|
|||
tslib: 2.8.1
|
||||
typescript: 5.9.3
|
||||
undici: 7.16.0
|
||||
vite: 7.2.4(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
|
||||
vite: 7.2.4(@types/node@20.19.25)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.2)
|
||||
watchpack: 2.4.4
|
||||
optionalDependencies:
|
||||
'@angular/core': link:packages/core
|
||||
|
|
@ -13435,10 +13445,10 @@ snapshots:
|
|||
karma: 6.4.4(bufferutil@4.0.9)(utf-8-validate@6.0.5)
|
||||
less: 4.4.2
|
||||
lmdb: 3.4.4
|
||||
ng-packagr: 21.1.0-next.0(@angular/compiler-cli@packages+compiler-cli)(tailwindcss@3.4.18(tsx@4.20.6)(yaml@2.8.1))(tslib@2.8.1)(typescript@5.9.3)
|
||||
ng-packagr: 21.1.0-next.0(@angular/compiler-cli@packages+compiler-cli)(tailwindcss@3.4.18(tsx@4.20.6)(yaml@2.8.2))(tslib@2.8.1)(typescript@5.9.3)
|
||||
postcss: 8.5.6
|
||||
tailwindcss: 3.4.18(tsx@4.20.6)(yaml@2.8.1)
|
||||
vitest: 4.0.13(@opentelemetry/api@1.9.0)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@27.2.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
|
||||
tailwindcss: 3.4.18(tsx@4.20.6)(yaml@2.8.2)
|
||||
vitest: 4.0.13(@opentelemetry/api@1.9.0)(@types/node@20.19.25)(jiti@2.6.1)(jsdom@27.2.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.2)
|
||||
transitivePeerDependencies:
|
||||
- '@types/node'
|
||||
- chokidar
|
||||
|
|
@ -13452,7 +13462,7 @@ snapshots:
|
|||
- tsx
|
||||
- yaml
|
||||
|
||||
'@angular/build@21.1.0-next.0(703fb57f7d4265c06221da6c3dd7fb98)':
|
||||
'@angular/build@21.1.0-next.0(5f1181e1dc214c8c152154f591bb0743)':
|
||||
dependencies:
|
||||
'@ampproject/remapping': 2.3.0
|
||||
'@angular-devkit/architect': 0.2101.0-next.0(chokidar@4.0.3)
|
||||
|
|
@ -13461,8 +13471,8 @@ snapshots:
|
|||
'@babel/core': 7.28.5
|
||||
'@babel/helper-annotate-as-pure': 7.27.3
|
||||
'@babel/helper-split-export-declaration': 7.24.7
|
||||
'@inquirer/confirm': 5.1.21(@types/node@20.19.25)
|
||||
'@vitejs/plugin-basic-ssl': 2.1.0(vite@7.2.4(@types/node@20.19.25)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))
|
||||
'@inquirer/confirm': 5.1.21(@types/node@24.10.1)
|
||||
'@vitejs/plugin-basic-ssl': 2.1.0(vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))
|
||||
beasties: 0.3.5
|
||||
browserslist: 4.28.0
|
||||
esbuild: 0.27.0
|
||||
|
|
@ -13483,7 +13493,7 @@ snapshots:
|
|||
tslib: 2.8.1
|
||||
typescript: 5.9.3
|
||||
undici: 7.16.0
|
||||
vite: 7.2.4(@types/node@20.19.25)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
|
||||
vite: 7.2.4(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)
|
||||
watchpack: 2.4.4
|
||||
optionalDependencies:
|
||||
'@angular/core': link:packages/core
|
||||
|
|
@ -13495,10 +13505,10 @@ snapshots:
|
|||
karma: 6.4.4(bufferutil@4.0.9)(utf-8-validate@6.0.5)
|
||||
less: 4.4.2
|
||||
lmdb: 3.4.4
|
||||
ng-packagr: 21.1.0-next.0(@angular/compiler-cli@packages+compiler-cli)(tailwindcss@3.4.18(tsx@4.20.6)(yaml@2.8.1))(tslib@2.8.1)(typescript@5.9.3)
|
||||
ng-packagr: 21.1.0-next.0(@angular/compiler-cli@packages+compiler-cli)(tailwindcss@3.4.18(tsx@4.21.0)(yaml@2.8.2))(tslib@2.8.1)(typescript@5.9.3)
|
||||
postcss: 8.5.6
|
||||
tailwindcss: 3.4.18(tsx@4.20.6)(yaml@2.8.1)
|
||||
vitest: 4.0.13(@opentelemetry/api@1.9.0)(@types/node@20.19.25)(jiti@2.6.1)(jsdom@27.2.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
|
||||
tailwindcss: 3.4.18(tsx@4.21.0)(yaml@2.8.2)
|
||||
vitest: 4.0.13(@opentelemetry/api@1.9.0)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@27.2.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)
|
||||
transitivePeerDependencies:
|
||||
- '@types/node'
|
||||
- chokidar
|
||||
|
|
@ -13632,7 +13642,7 @@ snapshots:
|
|||
rxjs: 7.8.2
|
||||
tslib: 2.8.1
|
||||
|
||||
'@angular/ng-dev@https://codeload.github.com/angular/dev-infra-private-ng-dev-builds/tar.gz/4c28145df03aff8c74d0a53f4f5602140e4d1a23(@modelcontextprotocol/sdk@1.22.0)':
|
||||
'@angular/ng-dev@https://codeload.github.com/angular/dev-infra-private-ng-dev-builds/tar.gz/cfd4a8c8386ea78c45d54a09dcef356d6c8e7ddf(@modelcontextprotocol/sdk@1.22.0)':
|
||||
dependencies:
|
||||
'@actions/core': 1.11.1
|
||||
'@google-cloud/spanner': 8.0.0(supports-color@10.2.2)
|
||||
|
|
@ -13649,7 +13659,7 @@ snapshots:
|
|||
'@octokit/request-error': 7.1.0
|
||||
'@octokit/rest': 22.0.1
|
||||
'@octokit/types': 16.0.0
|
||||
'@pnpm/dependency-path': 1001.1.5
|
||||
'@pnpm/dependency-path': 1001.1.6
|
||||
'@types/cli-progress': 3.11.6
|
||||
'@types/ejs': 3.1.5
|
||||
'@types/events': 3.0.3
|
||||
|
|
@ -13681,12 +13691,12 @@ snapshots:
|
|||
nock: 14.0.10
|
||||
semver: 7.7.3
|
||||
supports-color: 10.2.2
|
||||
tsx: 4.20.6
|
||||
tsx: 4.21.0
|
||||
typed-graphqlify: 3.1.6
|
||||
typescript: 5.9.3
|
||||
utf-8-validate: 6.0.5
|
||||
which: 6.0.0
|
||||
yaml: 2.8.1
|
||||
yaml: 2.8.2
|
||||
yargs: 18.0.0
|
||||
transitivePeerDependencies:
|
||||
- '@modelcontextprotocol/sdk'
|
||||
|
|
@ -16962,7 +16972,7 @@ snapshots:
|
|||
|
||||
'@pnpm/crypto.polyfill@1000.1.0': {}
|
||||
|
||||
'@pnpm/dependency-path@1001.1.5':
|
||||
'@pnpm/dependency-path@1001.1.6':
|
||||
dependencies:
|
||||
'@pnpm/crypto.hash': 1000.2.1
|
||||
'@pnpm/types': 1001.0.1
|
||||
|
|
@ -18072,13 +18082,13 @@ snapshots:
|
|||
'@unrs/resolver-binding-win32-x64-msvc@1.11.1':
|
||||
optional: true
|
||||
|
||||
'@vitejs/plugin-basic-ssl@2.1.0(vite@7.2.4(@types/node@20.19.25)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))':
|
||||
'@vitejs/plugin-basic-ssl@2.1.0(vite@7.2.4(@types/node@20.19.25)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.2))':
|
||||
dependencies:
|
||||
vite: 7.2.4(@types/node@20.19.25)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
|
||||
vite: 7.2.4(@types/node@20.19.25)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.2)
|
||||
|
||||
'@vitejs/plugin-basic-ssl@2.1.0(vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))':
|
||||
'@vitejs/plugin-basic-ssl@2.1.0(vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))':
|
||||
dependencies:
|
||||
vite: 7.2.4(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
|
||||
vite: 7.2.4(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)
|
||||
|
||||
'@vitest/expect@4.0.13':
|
||||
dependencies:
|
||||
|
|
@ -18089,22 +18099,22 @@ snapshots:
|
|||
chai: 6.2.1
|
||||
tinyrainbow: 3.0.3
|
||||
|
||||
'@vitest/mocker@4.0.13(vite@7.2.4(@types/node@20.19.25)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))':
|
||||
'@vitest/mocker@4.0.13(vite@7.2.4(@types/node@20.19.25)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.2))':
|
||||
dependencies:
|
||||
'@vitest/spy': 4.0.13
|
||||
estree-walker: 3.0.3
|
||||
magic-string: 0.30.21
|
||||
optionalDependencies:
|
||||
vite: 7.2.4(@types/node@20.19.25)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
|
||||
vite: 7.2.4(@types/node@20.19.25)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.2)
|
||||
optional: true
|
||||
|
||||
'@vitest/mocker@4.0.13(vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))':
|
||||
'@vitest/mocker@4.0.13(vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))':
|
||||
dependencies:
|
||||
'@vitest/spy': 4.0.13
|
||||
estree-walker: 3.0.3
|
||||
magic-string: 0.30.21
|
||||
optionalDependencies:
|
||||
vite: 7.2.4(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
|
||||
vite: 7.2.4(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)
|
||||
|
||||
'@vitest/pretty-format@4.0.13':
|
||||
dependencies:
|
||||
|
|
@ -23777,7 +23787,7 @@ snapshots:
|
|||
|
||||
netmask@2.0.2: {}
|
||||
|
||||
ng-packagr@21.1.0-next.0(@angular/compiler-cli@21.1.0-next.0(@angular/compiler@21.1.0-next.0)(typescript@5.9.3))(tailwindcss@3.4.18(tsx@4.20.6)(yaml@2.8.1))(tslib@2.8.1)(typescript@5.9.3):
|
||||
ng-packagr@21.1.0-next.0(@angular/compiler-cli@21.1.0-next.0(@angular/compiler@21.1.0-next.0)(typescript@5.9.3))(tailwindcss@3.4.18(tsx@4.21.0)(yaml@2.8.2))(tslib@2.8.1)(typescript@5.9.3):
|
||||
dependencies:
|
||||
'@ampproject/remapping': 2.3.0
|
||||
'@angular/compiler-cli': 21.1.0-next.0(@angular/compiler@21.1.0-next.0)(typescript@5.9.3)
|
||||
|
|
@ -23805,9 +23815,9 @@ snapshots:
|
|||
typescript: 5.9.3
|
||||
optionalDependencies:
|
||||
rollup: 4.53.2
|
||||
tailwindcss: 3.4.18(tsx@4.20.6)(yaml@2.8.1)
|
||||
tailwindcss: 3.4.18(tsx@4.21.0)(yaml@2.8.2)
|
||||
|
||||
ng-packagr@21.1.0-next.0(@angular/compiler-cli@packages+compiler-cli)(tailwindcss@3.4.18(tsx@4.20.6)(yaml@2.8.1))(tslib@2.8.1)(typescript@5.9.3):
|
||||
ng-packagr@21.1.0-next.0(@angular/compiler-cli@packages+compiler-cli)(tailwindcss@3.4.18(tsx@4.20.6)(yaml@2.8.2))(tslib@2.8.1)(typescript@5.9.3):
|
||||
dependencies:
|
||||
'@ampproject/remapping': 2.3.0
|
||||
'@angular/compiler-cli': link:packages/compiler-cli
|
||||
|
|
@ -23835,7 +23845,38 @@ snapshots:
|
|||
typescript: 5.9.3
|
||||
optionalDependencies:
|
||||
rollup: 4.53.2
|
||||
tailwindcss: 3.4.18(tsx@4.20.6)(yaml@2.8.1)
|
||||
tailwindcss: 3.4.18(tsx@4.20.6)(yaml@2.8.2)
|
||||
optional: true
|
||||
|
||||
ng-packagr@21.1.0-next.0(@angular/compiler-cli@packages+compiler-cli)(tailwindcss@3.4.18(tsx@4.21.0)(yaml@2.8.2))(tslib@2.8.1)(typescript@5.9.3):
|
||||
dependencies:
|
||||
'@ampproject/remapping': 2.3.0
|
||||
'@angular/compiler-cli': link:packages/compiler-cli
|
||||
'@rollup/plugin-json': 6.1.0(rollup@4.53.2)
|
||||
'@rollup/wasm-node': 4.53.3
|
||||
ajv: 8.17.1
|
||||
ansi-colors: 4.1.3
|
||||
browserslist: 4.28.0
|
||||
chokidar: 4.0.3
|
||||
commander: 14.0.2
|
||||
dependency-graph: 1.0.0
|
||||
esbuild: 0.27.0
|
||||
find-cache-directory: 6.0.0
|
||||
injection-js: 2.6.1
|
||||
jsonc-parser: 3.3.1
|
||||
less: 4.4.2
|
||||
ora: 9.0.0
|
||||
piscina: 5.1.4
|
||||
postcss: 8.5.6
|
||||
rollup-plugin-dts: 6.2.3(rollup@4.53.2)(typescript@5.9.3)
|
||||
rxjs: 7.8.2
|
||||
sass: 1.94.2
|
||||
tinyglobby: 0.2.15
|
||||
tslib: 2.8.1
|
||||
typescript: 5.9.3
|
||||
optionalDependencies:
|
||||
rollup: 4.53.2
|
||||
tailwindcss: 3.4.18(tsx@4.21.0)(yaml@2.8.2)
|
||||
optional: true
|
||||
|
||||
ngx-flamegraph@0.1.1(@angular/common@packages+common)(@angular/core@packages+core):
|
||||
|
|
@ -24542,14 +24583,24 @@ snapshots:
|
|||
camelcase-css: 2.0.1
|
||||
postcss: 8.5.6
|
||||
|
||||
postcss-load-config@6.0.1(jiti@1.21.7)(postcss@8.5.6)(tsx@4.20.6)(yaml@2.8.1):
|
||||
postcss-load-config@6.0.1(jiti@1.21.7)(postcss@8.5.6)(tsx@4.20.6)(yaml@2.8.2):
|
||||
dependencies:
|
||||
lilconfig: 3.1.3
|
||||
optionalDependencies:
|
||||
jiti: 1.21.7
|
||||
postcss: 8.5.6
|
||||
tsx: 4.20.6
|
||||
yaml: 2.8.1
|
||||
yaml: 2.8.2
|
||||
optional: true
|
||||
|
||||
postcss-load-config@6.0.1(jiti@1.21.7)(postcss@8.5.6)(tsx@4.21.0)(yaml@2.8.2):
|
||||
dependencies:
|
||||
lilconfig: 3.1.3
|
||||
optionalDependencies:
|
||||
jiti: 1.21.7
|
||||
postcss: 8.5.6
|
||||
tsx: 4.21.0
|
||||
yaml: 2.8.2
|
||||
|
||||
postcss-loader@8.2.0(postcss@8.5.6)(typescript@5.9.3)(webpack@5.103.0(esbuild@0.27.0)):
|
||||
dependencies:
|
||||
|
|
@ -26087,7 +26138,7 @@ snapshots:
|
|||
string-width: 4.2.3
|
||||
strip-ansi: 6.0.1
|
||||
|
||||
tailwindcss@3.4.18(tsx@4.20.6)(yaml@2.8.1):
|
||||
tailwindcss@3.4.18(tsx@4.20.6)(yaml@2.8.2):
|
||||
dependencies:
|
||||
'@alloc/quick-lru': 5.2.0
|
||||
arg: 5.0.2
|
||||
|
|
@ -26106,7 +26157,36 @@ snapshots:
|
|||
postcss: 8.5.6
|
||||
postcss-import: 15.1.0(postcss@8.5.6)
|
||||
postcss-js: 4.1.0(postcss@8.5.6)
|
||||
postcss-load-config: 6.0.1(jiti@1.21.7)(postcss@8.5.6)(tsx@4.20.6)(yaml@2.8.1)
|
||||
postcss-load-config: 6.0.1(jiti@1.21.7)(postcss@8.5.6)(tsx@4.20.6)(yaml@2.8.2)
|
||||
postcss-nested: 6.2.0(postcss@8.5.6)
|
||||
postcss-selector-parser: 6.1.2
|
||||
resolve: 1.22.11
|
||||
sucrase: 3.35.1
|
||||
transitivePeerDependencies:
|
||||
- tsx
|
||||
- yaml
|
||||
optional: true
|
||||
|
||||
tailwindcss@3.4.18(tsx@4.21.0)(yaml@2.8.2):
|
||||
dependencies:
|
||||
'@alloc/quick-lru': 5.2.0
|
||||
arg: 5.0.2
|
||||
chokidar: 3.6.0
|
||||
didyoumean: 1.2.2
|
||||
dlv: 1.1.3
|
||||
fast-glob: 3.3.3
|
||||
glob-parent: 6.0.2
|
||||
is-glob: 4.0.3
|
||||
jiti: 1.21.7
|
||||
lilconfig: 3.1.3
|
||||
micromatch: 4.0.8
|
||||
normalize-path: 3.0.0
|
||||
object-hash: 3.0.0
|
||||
picocolors: 1.1.1
|
||||
postcss: 8.5.6
|
||||
postcss-import: 15.1.0(postcss@8.5.6)
|
||||
postcss-js: 4.1.0(postcss@8.5.6)
|
||||
postcss-load-config: 6.0.1(jiti@1.21.7)(postcss@8.5.6)(tsx@4.21.0)(yaml@2.8.2)
|
||||
postcss-nested: 6.2.0(postcss@8.5.6)
|
||||
postcss-selector-parser: 6.1.2
|
||||
resolve: 1.22.11
|
||||
|
|
@ -26484,6 +26564,13 @@ snapshots:
|
|||
optionalDependencies:
|
||||
fsevents: 2.3.3
|
||||
|
||||
tsx@4.21.0:
|
||||
dependencies:
|
||||
esbuild: 0.27.0
|
||||
get-tsconfig: 4.13.0
|
||||
optionalDependencies:
|
||||
fsevents: 2.3.3
|
||||
|
||||
tuf-js@4.0.0:
|
||||
dependencies:
|
||||
'@tufjs/models': 4.0.0
|
||||
|
|
@ -26900,7 +26987,7 @@ snapshots:
|
|||
- bare-abort-controller
|
||||
- react-native-b4a
|
||||
|
||||
vite@7.2.4(@types/node@20.19.25)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1):
|
||||
vite@7.2.4(@types/node@20.19.25)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.2):
|
||||
dependencies:
|
||||
esbuild: 0.25.12
|
||||
fdir: 6.5.0(picomatch@4.0.3)
|
||||
|
|
@ -26916,9 +27003,9 @@ snapshots:
|
|||
sass: 1.94.2
|
||||
terser: 5.44.1
|
||||
tsx: 4.20.6
|
||||
yaml: 2.8.1
|
||||
yaml: 2.8.2
|
||||
|
||||
vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1):
|
||||
vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2):
|
||||
dependencies:
|
||||
esbuild: 0.25.12
|
||||
fdir: 6.5.0(picomatch@4.0.3)
|
||||
|
|
@ -26933,13 +27020,13 @@ snapshots:
|
|||
less: 4.4.2
|
||||
sass: 1.94.2
|
||||
terser: 5.44.1
|
||||
tsx: 4.20.6
|
||||
yaml: 2.8.1
|
||||
tsx: 4.21.0
|
||||
yaml: 2.8.2
|
||||
|
||||
vitest@4.0.13(@opentelemetry/api@1.9.0)(@types/node@20.19.25)(jiti@2.6.1)(jsdom@27.2.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1):
|
||||
vitest@4.0.13(@opentelemetry/api@1.9.0)(@types/node@20.19.25)(jiti@2.6.1)(jsdom@27.2.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.2):
|
||||
dependencies:
|
||||
'@vitest/expect': 4.0.13
|
||||
'@vitest/mocker': 4.0.13(vite@7.2.4(@types/node@20.19.25)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))
|
||||
'@vitest/mocker': 4.0.13(vite@7.2.4(@types/node@20.19.25)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.2))
|
||||
'@vitest/pretty-format': 4.0.13
|
||||
'@vitest/runner': 4.0.13
|
||||
'@vitest/snapshot': 4.0.13
|
||||
|
|
@ -26956,7 +27043,7 @@ snapshots:
|
|||
tinyexec: 0.3.2
|
||||
tinyglobby: 0.2.15
|
||||
tinyrainbow: 3.0.3
|
||||
vite: 7.2.4(@types/node@20.19.25)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
|
||||
vite: 7.2.4(@types/node@20.19.25)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.2)
|
||||
why-is-node-running: 2.3.0
|
||||
optionalDependencies:
|
||||
'@opentelemetry/api': 1.9.0
|
||||
|
|
@ -26977,10 +27064,10 @@ snapshots:
|
|||
- yaml
|
||||
optional: true
|
||||
|
||||
vitest@4.0.13(@opentelemetry/api@1.9.0)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@27.2.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1):
|
||||
vitest@4.0.13(@opentelemetry/api@1.9.0)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@27.2.0(bufferutil@4.0.9)(utf-8-validate@6.0.5))(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2):
|
||||
dependencies:
|
||||
'@vitest/expect': 4.0.13
|
||||
'@vitest/mocker': 4.0.13(vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1))
|
||||
'@vitest/mocker': 4.0.13(vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))
|
||||
'@vitest/pretty-format': 4.0.13
|
||||
'@vitest/runner': 4.0.13
|
||||
'@vitest/snapshot': 4.0.13
|
||||
|
|
@ -26997,7 +27084,7 @@ snapshots:
|
|||
tinyexec: 0.3.2
|
||||
tinyglobby: 0.2.15
|
||||
tinyrainbow: 3.0.3
|
||||
vite: 7.2.4(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.20.6)(yaml@2.8.1)
|
||||
vite: 7.2.4(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(sass@1.94.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)
|
||||
why-is-node-running: 2.3.0
|
||||
optionalDependencies:
|
||||
'@opentelemetry/api': 1.9.0
|
||||
|
|
@ -27522,6 +27609,8 @@ snapshots:
|
|||
|
||||
yaml@2.8.1: {}
|
||||
|
||||
yaml@2.8.2: {}
|
||||
|
||||
yargs-parser@18.1.3:
|
||||
dependencies:
|
||||
camelcase: 5.3.1
|
||||
|
|
|
|||
Loading…
Reference in a new issue