build: update cross-repo angular dependencies

See associated pull request for more information.
This commit is contained in:
Angular Robot
2026-08-07 23:37:15 +00:00
committed by Alon Mishne
parent 565dbb2fe5
commit b95f9e2691
50 changed files with 5186 additions and 15044 deletions
+13 -4
View File
@@ -58321,7 +58321,7 @@ var RequestError2 = class extends Error {
this.request = requestCopy;
}
};
var VERSION22 = "10.0.11";
var VERSION22 = "10.0.13";
var defaults_default2 = {
headers: {
"user-agent": `octokit-request.js/${VERSION22} ${getUserAgent2()}`
@@ -58451,7 +58451,10 @@ async function getResponseData2(response) {
} catch (err) {
return text;
}
} else if (mimetype.type.startsWith("text/") || mimetype.parameters.charset?.toLowerCase() === "utf-8") {
} else if (mimetype.type.startsWith("text/") || // `application/octet-stream` is the canonical "arbitrary binary" type
// (RFC 2046) and must never be decoded as text, even when the response
// carries a (misleading) `charset=utf-8` parameter — see #751.
mimetype.parameters.charset?.toLowerCase() === "utf-8" && mimetype.type !== "application/octet-stream") {
return response.text().catch(noop3);
} else {
return response.arrayBuffer().catch(
@@ -58518,6 +58521,9 @@ var GraphqlResponseError2 = class extends Error {
Error.captureStackTrace(this, this.constructor);
}
}
request;
headers;
response;
name = "GraphqlResponseError";
errors;
data;
@@ -58650,7 +58656,7 @@ var createTokenAuth3 = function createTokenAuth22(token) {
hook: hook2.bind(null, token)
});
};
var VERSION42 = "7.0.6";
var VERSION42 = "7.0.7";
var noop22 = () => {
};
var consoleWarn2 = console.warn.bind(console);
@@ -65366,7 +65372,7 @@ content-type/dist/index.js:
*)
*)
@angular/ng-dev/bundles/chunk-D7SBR34O.mjs:
@angular/ng-dev/bundles/chunk-3ZLFS5FP.mjs:
(*! Bundled license information:
content-type/dist/index.js:
@@ -65382,5 +65388,8 @@ content-type/dist/index.js:
@octokit/request/dist-bundle/index.js:
(* v8 ignore next -- @preserve *)
(* v8 ignore else -- @preserve *)
@octokit/graphql/dist-bundle/index.js:
(* v8 ignore if -- @preserve *)
*)
*/
+4 -4
View File
@@ -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@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Setup Bazel
uses: angular/dev-infra/github-actions/bazel/setup@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/bazel/setup@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Setup Bazel RBE
uses: angular/dev-infra/github-actions/bazel/configure-remote@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/bazel/configure-remote@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- 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@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
- uses: angular/dev-infra/github-actions/previews/pack-and-upload-artifact@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
with:
workflow-artifact-name: 'adev-preview'
pull-number: '${{github.event.pull_request.number}}'
+1 -1
View File
@@ -46,7 +46,7 @@ jobs:
npx -y firebase-tools@15.15.0 target:clear --config adev/firebase.json --project ${{env.PREVIEW_PROJECT}} hosting angular-docs
npx -y firebase-tools@15.15.0 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@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
- uses: angular/dev-infra/github-actions/previews/upload-artifacts-to-firebase@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
with:
github-token: '${{secrets.GITHUB_TOKEN}}'
workflow-artifact-name: 'adev-preview'
@@ -18,6 +18,6 @@ jobs:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- uses: angular/dev-infra/github-actions/branch-manager@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
- uses: angular/dev-infra/github-actions/branch-manager@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
with:
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
+2 -2
View File
@@ -50,9 +50,9 @@ jobs:
- run: pnpm install --frozen-lockfile
- name: Setup Bazel
uses: angular/dev-infra/github-actions/bazel/setup@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/bazel/setup@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- uses: angular/dev-infra/github-actions/bazel/configure-remote@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
- uses: angular/dev-infra/github-actions/bazel/configure-remote@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
with:
bazelrc: ./.bazelrc.user
+25 -25
View File
@@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Initialize environment
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Install node modules
run: pnpm install --frozen-lockfile
- name: Check code lint
@@ -41,13 +41,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Initialize environment
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
with:
disable-package-manager-cache: true
- name: Setup Bazel
uses: angular/dev-infra/github-actions/bazel/setup@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/bazel/setup@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Setup Bazel RBE
uses: angular/dev-infra/github-actions/bazel/configure-remote@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/bazel/configure-remote@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
with:
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
- name: Install node modules
@@ -69,11 +69,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Initialize environment
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Setup Bazel
uses: angular/dev-infra/github-actions/bazel/setup@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/bazel/setup@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Setup Bazel Remote Caching
uses: angular/dev-infra/github-actions/bazel/configure-remote@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/bazel/configure-remote@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
with:
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
- name: Install node modules
@@ -85,11 +85,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Initialize environment
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Setup Bazel
uses: angular/dev-infra/github-actions/bazel/setup@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/bazel/setup@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Setup Bazel Remote Caching
uses: angular/dev-infra/github-actions/bazel/configure-remote@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/bazel/configure-remote@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
with:
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
- name: Install node modules
@@ -102,11 +102,11 @@ jobs:
labels: ubuntu-latest
steps:
- name: Initialize environment
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Setup Bazel
uses: angular/dev-infra/github-actions/bazel/setup@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/bazel/setup@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Setup Bazel RBE
uses: angular/dev-infra/github-actions/bazel/configure-remote@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/bazel/configure-remote@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
with:
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
- name: Install node modules
@@ -121,11 +121,11 @@ jobs:
labels: ubuntu-latest
steps:
- name: Initialize environment
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Setup Bazel
uses: angular/dev-infra/github-actions/bazel/setup@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/bazel/setup@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Setup Bazel RBE
uses: angular/dev-infra/github-actions/bazel/configure-remote@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/bazel/configure-remote@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
with:
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
- name: Install node modules
@@ -138,11 +138,11 @@ jobs:
labels: ubuntu-latest
steps:
- name: Initialize environment
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Setup Bazel
uses: angular/dev-infra/github-actions/bazel/setup@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/bazel/setup@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Setup Bazel RBE
uses: angular/dev-infra/github-actions/bazel/configure-remote@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/bazel/configure-remote@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Install node modules
run: pnpm install --frozen-lockfile
- run: echo "https://${{secrets.SNAPSHOT_BUILDS_GITHUB_TOKEN}}:@github.com" > ${HOME}/.git_credentials
@@ -154,11 +154,11 @@ jobs:
labels: ubuntu-latest
steps:
- name: Initialize environment
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Setup Bazel
uses: angular/dev-infra/github-actions/bazel/setup@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/bazel/setup@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Setup Bazel RBE
uses: angular/dev-infra/github-actions/bazel/configure-remote@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/bazel/configure-remote@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
with:
google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
- name: Install node modules
@@ -198,11 +198,11 @@ jobs:
runs-on: ubuntu-latest-8core
steps:
- name: Initialize environment
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Setup Bazel
uses: angular/dev-infra/github-actions/bazel/setup@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/bazel/setup@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Setup Bazel RBE
uses: angular/dev-infra/github-actions/bazel/configure-remote@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/bazel/configure-remote@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Install node modules
run: pnpm install --frozen-lockfile
- name: Build adev
+3 -3
View File
@@ -16,7 +16,7 @@ jobs:
if: github.event_name == 'pull_request_target'
runs-on: ubuntu-latest
steps:
- uses: angular/dev-infra/github-actions/labeling/pull-request@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
- uses: angular/dev-infra/github-actions/labeling/pull-request@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
with:
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
labels: '{"requires: TGP": ["packages/core/primitives/**/{*,.*}"]}'
@@ -24,14 +24,14 @@ jobs:
if: github.event_name == 'pull_request_target'
runs-on: ubuntu-latest
steps:
- uses: angular/dev-infra/github-actions/post-approval-changes@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
- uses: angular/dev-infra/github-actions/post-approval-changes@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
with:
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
issue_labels:
if: github.event_name == 'issues'
runs-on: ubuntu-latest
steps:
- uses: angular/dev-infra/github-actions/labeling/issue@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
- uses: angular/dev-infra/github-actions/labeling/issue@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
with:
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
google-generative-ai-key: ${{ secrets.GOOGLE_GENERATIVE_AI_KEY }}
+1 -1
View File
@@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: angular/dev-infra/github-actions/google-internal-tests@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
- uses: angular/dev-infra/github-actions/google-internal-tests@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
with:
run-tests-guide-url: http://go/angular-g3sync-start
github-token: ${{ secrets.GITHUB_TOKEN }}
+1 -1
View File
@@ -11,6 +11,6 @@ jobs:
status:
runs-on: ubuntu-latest
steps:
- uses: angular/dev-infra/github-actions/unified-status-check@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
- uses: angular/dev-infra/github-actions/unified-status-check@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
with:
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
+3 -3
View File
@@ -20,7 +20,7 @@ jobs:
workflows: ${{ steps.workflows.outputs.workflows }}
steps:
- name: Initialize environment
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Install node modules
run: pnpm install --frozen-lockfile
- id: workflows
@@ -38,9 +38,9 @@ jobs:
workflow: ${{ fromJSON(needs.list.outputs.workflows) }}
steps:
- name: Initialize environment
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Setup Bazel
uses: angular/dev-infra/github-actions/bazel/setup@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/bazel/setup@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- 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
+20 -20
View File
@@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Initialize environment
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Install node modules
run: pnpm install --frozen-lockfile
- name: Check code lint
@@ -39,7 +39,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@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/linting/licenses@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
with:
allow-dependencies-licenses: 'pkg:npm/google-protobuf@'
@@ -47,13 +47,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Initialize environment
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
with:
disable-package-manager-cache: true
- name: Setup Bazel
uses: angular/dev-infra/github-actions/bazel/setup@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/bazel/setup@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Setup Bazel RBE
uses: angular/dev-infra/github-actions/bazel/configure-remote@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/bazel/configure-remote@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Install node modules
run: pnpm install --frozen-lockfile
- name: Run unit tests
@@ -73,11 +73,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Initialize environment
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Setup Bazel
uses: angular/dev-infra/github-actions/bazel/setup@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/bazel/setup@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Setup Bazel Remote Caching
uses: angular/dev-infra/github-actions/bazel/configure-remote@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/bazel/configure-remote@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Install node modules
run: pnpm install --frozen-lockfile
- name: Run CI tests for framework
@@ -97,11 +97,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Initialize environment
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Setup Bazel
uses: angular/dev-infra/github-actions/bazel/setup@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/bazel/setup@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Setup Bazel Remote Caching
uses: angular/dev-infra/github-actions/bazel/configure-remote@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/bazel/configure-remote@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Install node modules
run: pnpm install --frozen-lockfile
- name: Run integration CI tests for framework
@@ -112,11 +112,11 @@ jobs:
labels: ubuntu-latest
steps:
- name: Initialize environment
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Setup Bazel
uses: angular/dev-infra/github-actions/bazel/setup@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/bazel/setup@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Setup Bazel RBE
uses: angular/dev-infra/github-actions/bazel/configure-remote@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/bazel/configure-remote@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Install node modules
run: pnpm install --frozen-lockfile
- name: Run tests
@@ -129,11 +129,11 @@ jobs:
labels: ubuntu-latest
steps:
- name: Initialize environment
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Setup Bazel
uses: angular/dev-infra/github-actions/bazel/setup@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/bazel/setup@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Setup Bazel RBE
uses: angular/dev-infra/github-actions/bazel/configure-remote@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/bazel/configure-remote@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Install node modules
run: pnpm install --frozen-lockfile
- name: Run tests
@@ -144,11 +144,11 @@ jobs:
labels: ubuntu-latest
steps:
- name: Initialize environment
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Setup Bazel
uses: angular/dev-infra/github-actions/bazel/setup@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/bazel/setup@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Setup Bazel RBE
uses: angular/dev-infra/github-actions/bazel/configure-remote@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/github-actions/bazel/configure-remote@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
- name: Install node modules
run: pnpm install --frozen-lockfile
- run: |
+1 -1
View File
@@ -18,7 +18,7 @@ permissions:
jobs:
release:
uses: angular/dev-infra/.github/workflows/reusable-release.yml@0b701b31038419ad73422a9d9d3dff43a725a0d2 # main
uses: angular/dev-infra/.github/workflows/reusable-release.yml@04230133d395dfb032d782b8e63b4fcbbd406aa5 # main
secrets:
wombot-token: ${{ secrets.WOMBOT_TOKEN }}
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
+4 -4
View File
@@ -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 = "a0bbcceea19b7888114eeafe3f52f9822ca2b34a",
commit = "20a373d609c4f5765b9ad367a205f3a635dd2cda",
remote = "https://github.com/angular/rules_angular.git",
)
bazel_dep(name = "devinfra")
git_override(
module_name = "devinfra",
commit = "0b701b31038419ad73422a9d9d3dff43a725a0d2",
commit = "04230133d395dfb032d782b8e63b4fcbbd406aa5",
remote = "https://github.com/angular/dev-infra.git",
)
bazel_dep(name = "rules_sass")
git_override(
module_name = "rules_sass",
commit = "53d920d6e7bbe44f982af9c76976832e8ade1547",
commit = "c14ca0f1f901a86515cf89a930c0ed8a011a6e20",
remote = "https://github.com/angular/rules_sass.git",
)
bazel_dep(name = "rules_browsers")
git_override(
module_name = "rules_browsers",
commit = "7fe4598226334b0809d3054f6948d72df4b5ed59",
commit = "37853f23de9a9a70f53c02a9baa27e08d7d12003",
remote = "https://github.com/angular/rules_browsers.git",
)
+17 -18
View File
@@ -57,7 +57,6 @@
"https://bcr.bazel.build/modules/bazel_lib/3.0.0-rc.0/MODULE.bazel": "d6e00979a98ac14ada5e31c8794708b41434d461e7e7ca39b59b765e6d233b18",
"https://bcr.bazel.build/modules/bazel_lib/3.0.0/MODULE.bazel": "22b70b80ac89ad3f3772526cd9feee2fa412c2b01933fea7ed13238a448d370d",
"https://bcr.bazel.build/modules/bazel_lib/3.2.2/MODULE.bazel": "e2c890c8a515d6bca9c66d47718aa9e44b458fde64ec7204b8030bf2d349058c",
"https://bcr.bazel.build/modules/bazel_lib/3.5.0/MODULE.bazel": "1eba0ba67d418d99fb682c36147a9e1725abbc8fc25544be64702e32eda2be29",
"https://bcr.bazel.build/modules/bazel_lib/3.7.0/MODULE.bazel": "d7c10ed67f0f7f1fda179db8f86c22642581bd614882e1a50545fbe069525173",
"https://bcr.bazel.build/modules/bazel_lib/3.7.1/MODULE.bazel": "b6fd9b2f8fab956420c11836f416efac4a70e20804ae384ebe62773a4ed70046",
"https://bcr.bazel.build/modules/bazel_lib/3.7.1/source.json": "635fdaa28b50c04febc5e60ef51bc913d3bc87bfbaac7045449273c2341648cb",
@@ -546,7 +545,7 @@
},
"@@rules_browsers+//browsers:extensions.bzl%browsers": {
"general": {
"bzlTransitiveDigest": "w4tgtXA7WLl79lEQFfedhl7OVEGAKFqAFLnlI5c/Rtk=",
"bzlTransitiveDigest": "4TUvIB8juKCShOmy6m77drIdimJqOTEPwfzMxkWD5a4=",
"usagesDigest": "FmXYJVoVJlnfUU8x8gObSvu4qWcco/9Faw61aC/wBF0=",
"recordedFileInputs": {},
"recordedDirentsInputs": {},
@@ -555,9 +554,9 @@
"rules_browsers_chrome_linux": {
"repoRuleId": "@@rules_browsers+//browsers/private:browser_repo.bzl%browser_repo",
"attributes": {
"sha256": "7220f7149a01e85e631cb949b03fd472eba72fe0a92c6d8dab7833dd94e0c72c",
"sha256": "5b132ebe0be5c0c15cb5222c33e04e37ae21ed3e00d84c68e905f80f29221c50",
"urls": [
"https://storage.googleapis.com/chrome-for-testing-public/153.0.7981.3/linux64/chrome-headless-shell-linux64.zip"
"https://storage.googleapis.com/chrome-for-testing-public/153.0.7993.0/linux64/chrome-headless-shell-linux64.zip"
],
"named_files": {
"CHROME-HEADLESS-SHELL": "chrome-headless-shell-linux64/chrome-headless-shell"
@@ -573,9 +572,9 @@
"rules_browsers_chrome_mac": {
"repoRuleId": "@@rules_browsers+//browsers/private:browser_repo.bzl%browser_repo",
"attributes": {
"sha256": "0d80d90379960943f3dc9f5eb966876010dd950736c97386e375581a56baf7c7",
"sha256": "522e62dbfce61fddd413fb76a65e699b6f5bdce4045e4398d1e2fb1ef73ff6f3",
"urls": [
"https://storage.googleapis.com/chrome-for-testing-public/153.0.7981.3/mac-x64/chrome-headless-shell-mac-x64.zip"
"https://storage.googleapis.com/chrome-for-testing-public/153.0.7993.0/mac-x64/chrome-headless-shell-mac-x64.zip"
],
"named_files": {
"CHROME-HEADLESS-SHELL": "chrome-headless-shell-mac-x64/chrome-headless-shell"
@@ -591,9 +590,9 @@
"rules_browsers_chrome_mac_arm": {
"repoRuleId": "@@rules_browsers+//browsers/private:browser_repo.bzl%browser_repo",
"attributes": {
"sha256": "7fad05ead762524231ed026cf40385cba80cb3daab2973622f3533308fc045fa",
"sha256": "b68d54b63ab30042874a87ad81a135360fa87e1d4763df2431b30b4d59878b4e",
"urls": [
"https://storage.googleapis.com/chrome-for-testing-public/153.0.7981.3/mac-arm64/chrome-headless-shell-mac-arm64.zip"
"https://storage.googleapis.com/chrome-for-testing-public/153.0.7993.0/mac-arm64/chrome-headless-shell-mac-arm64.zip"
],
"named_files": {
"CHROME-HEADLESS-SHELL": "chrome-headless-shell-mac-arm64/chrome-headless-shell"
@@ -609,9 +608,9 @@
"rules_browsers_chrome_win64": {
"repoRuleId": "@@rules_browsers+//browsers/private:browser_repo.bzl%browser_repo",
"attributes": {
"sha256": "2c08f3f53115434e3dd623e2e1f1f54896fa4b2cbaf86518d7f4708dc80fe67d",
"sha256": "0fd5b488d41686cb7cb0be1feb861f1e4cb44d9c5e67a4c5328a385742aa6a8e",
"urls": [
"https://storage.googleapis.com/chrome-for-testing-public/153.0.7981.3/win64/chrome-headless-shell-win64.zip"
"https://storage.googleapis.com/chrome-for-testing-public/153.0.7993.0/win64/chrome-headless-shell-win64.zip"
],
"named_files": {
"CHROME-HEADLESS-SHELL": "chrome-headless-shell-win64/chrome-headless-shell.exe"
@@ -627,9 +626,9 @@
"rules_browsers_chromedriver_linux": {
"repoRuleId": "@@rules_browsers+//browsers/private:browser_repo.bzl%browser_repo",
"attributes": {
"sha256": "8bab44616dd81669a7a99d77c6b7e952ee3ec3bfd01ddf864cf795a880cfbd92",
"sha256": "69139f654d93c12d04209713c725b33ea7074a1e35c47aaf98f419c4a00b4e9b",
"urls": [
"https://storage.googleapis.com/chrome-for-testing-public/153.0.7981.3/linux64/chromedriver-linux64.zip"
"https://storage.googleapis.com/chrome-for-testing-public/153.0.7993.0/linux64/chromedriver-linux64.zip"
],
"named_files": {
"CHROMEDRIVER": "chromedriver-linux64/chromedriver"
@@ -643,9 +642,9 @@
"rules_browsers_chromedriver_mac": {
"repoRuleId": "@@rules_browsers+//browsers/private:browser_repo.bzl%browser_repo",
"attributes": {
"sha256": "d1f8618664ec5b0433c19b36eef91b55671a1adf595ffd012da8b859c32dc7b1",
"sha256": "b56b49cb41658c25405757b3c01a5412403e3744ee6935c5f9f59bf2b907bcf6",
"urls": [
"https://storage.googleapis.com/chrome-for-testing-public/153.0.7981.3/mac-x64/chromedriver-mac-x64.zip"
"https://storage.googleapis.com/chrome-for-testing-public/153.0.7993.0/mac-x64/chromedriver-mac-x64.zip"
],
"named_files": {
"CHROMEDRIVER": "chromedriver-mac-x64/chromedriver"
@@ -659,9 +658,9 @@
"rules_browsers_chromedriver_mac_arm": {
"repoRuleId": "@@rules_browsers+//browsers/private:browser_repo.bzl%browser_repo",
"attributes": {
"sha256": "3c8b50af153cf6e8de8f2ec9f4b9a1ce717cd76a3ca6c82f9e736d7b705bdbe2",
"sha256": "e2bd843b45ba197632d29eeef188940488779684207eb3118a5a78c26aef9659",
"urls": [
"https://storage.googleapis.com/chrome-for-testing-public/153.0.7981.3/mac-arm64/chromedriver-mac-arm64.zip"
"https://storage.googleapis.com/chrome-for-testing-public/153.0.7993.0/mac-arm64/chromedriver-mac-arm64.zip"
],
"named_files": {
"CHROMEDRIVER": "chromedriver-mac-arm64/chromedriver"
@@ -675,9 +674,9 @@
"rules_browsers_chromedriver_win64": {
"repoRuleId": "@@rules_browsers+//browsers/private:browser_repo.bzl%browser_repo",
"attributes": {
"sha256": "2fdba8a5036173c57627b38df844e2f9c6634dd027eaa5a5f306033e14414e08",
"sha256": "2f56f10ba3989d8b5c44c22cff080c2cc436314f8f8babbcc151bb95b34de841",
"urls": [
"https://storage.googleapis.com/chrome-for-testing-public/153.0.7981.3/win64/chromedriver-win64.zip"
"https://storage.googleapis.com/chrome-for-testing-public/153.0.7993.0/win64/chromedriver-win64.zip"
],
"named_files": {
"CHROMEDRIVER": "chromedriver-win64/chromedriver.exe"
+6 -6
View File
@@ -5,21 +5,21 @@
"@algolia/requester-browser-xhr": "5.56.0",
"@algolia/requester-node-http": "5.56.0",
"@angular/animations": "workspace:*",
"@angular/aria": "22.1.0-rc.0",
"@angular/build": "22.2.0-next.0",
"@angular/cdk": "22.1.0-rc.0",
"@angular/cli": "22.2.0-next.0",
"@angular/aria": "22.2.0-next.0",
"@angular/build": "22.2.0-next.2",
"@angular/cdk": "22.2.0-next.0",
"@angular/cli": "22.2.0-next.2",
"@angular/common": "workspace:*",
"@angular/compiler": "workspace:*",
"@angular/compiler-cli": "workspace:*",
"@angular/core": "workspace:*",
"@angular/docs": "workspace:*",
"@angular/forms": "workspace:*",
"@angular/material": "22.1.0-rc.0",
"@angular/material": "22.2.0-next.0",
"@angular/platform-browser": "workspace:*",
"@angular/platform-server": "workspace:*",
"@angular/router": "workspace:*",
"@angular/ssr": "22.2.0-next.0",
"@angular/ssr": "22.2.0-next.2",
"@codemirror/autocomplete": "6.20.3",
"@codemirror/commands": "6.10.4",
"@codemirror/lang-angular": "0.1.4",
+2 -2
View File
@@ -2,11 +2,11 @@
"name": "@angular/docs",
"version": "0.0.0-PLACEHOLDER",
"peerDependencies": {
"@angular/cdk": "^22.1.0-next",
"@angular/cdk": "^22.2.0-next",
"@angular/common": "^22.2.0-next",
"@angular/core": "^22.2.0-next",
"@angular/forms": "^22.2.0-next",
"@angular/material": "^22.1.0-next",
"@angular/material": "^22.2.0-next",
"@angular/platform-browser": "^22.2.0-next",
"@angular/router": "^22.2.0-next",
"@angular/ssr": "^22.2.0-next",
@@ -10,13 +10,13 @@
"private": true,
"dependencies": {
"@angular/animations": "^22.1.0-next",
"@angular/aria": "^22.1.0-next",
"@angular/cdk": "^22.1.0-next",
"@angular/aria": "^22.2.0-next",
"@angular/cdk": "^22.2.0-next",
"@angular/common": "^22.2.0-next",
"@angular/compiler": "^22.2.0-next",
"@angular/core": "^22.2.0-next",
"@angular/forms": "^22.2.0-next",
"@angular/material": "^22.1.0-next",
"@angular/material": "^22.2.0-next",
"@angular/platform-browser": "^22.2.0-next",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
+3 -3
View File
@@ -15,13 +15,13 @@
"@angular/platform-server": "workspace:*",
"@angular/localize": "workspace:*",
"@angular/router": "workspace:*",
"@angular/ssr": "22.2.0-next.0",
"@angular/ssr": "22.2.0-next.2",
"rxjs": "~7.8.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular/build": "22.2.0-next.0",
"@angular/cli": "22.2.0-next.0",
"@angular/build": "22.2.0-next.2",
"@angular/cli": "22.2.0-next.2",
"@angular/compiler-cli": "workspace:*",
"jsdom": "^30.0.0",
"typescript": "~6.0.2",
+5 -5
View File
@@ -11,7 +11,7 @@
},
"private": true,
"dependencies": {
"@angular/cdk": "22.1.0-rc.0",
"@angular/cdk": "22.2.0-next.0",
"@angular/common": "link:./in-existing-linked-by-bazel",
"@angular/compiler": "link:./in-existing-linked-by-bazel",
"@angular/core": "link:./in-existing-linked-by-bazel",
@@ -19,15 +19,15 @@
"@angular/platform-browser": "link:./in-existing-linked-by-bazel",
"@angular/platform-browser-dynamic": "link:./in-existing-linked-by-bazel",
"@angular/router": "link:./in-existing-linked-by-bazel",
"@angular/ssr": "22.2.0-next.0",
"@angular/ssr": "22.2.0-next.2",
"rxjs": "^7.0.0",
"tslib": "^2.3.0",
"zone.js": "0.16.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "22.2.0-next.0",
"@angular/build": "22.2.0-next.0",
"@angular/cli": "22.2.0-next.0",
"@angular-devkit/build-angular": "22.2.0-next.2",
"@angular/build": "22.2.0-next.2",
"@angular/cli": "22.2.0-next.2",
"@angular/compiler-cli": "link:./in-existing-linked-by-bazel",
"@types/jasmine": "^6.0.0",
"@types/node": "^20.14.8",
+346 -1082
View File
File diff suppressed because it is too large Load Diff
@@ -29,9 +29,9 @@
"zone.js": "0.16.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "22.2.0-next.0",
"@angular/build": "22.2.0-next.0",
"@angular/cli": "22.2.0-next.0",
"@angular-devkit/build-angular": "22.2.0-next.2",
"@angular/build": "22.2.0-next.2",
"@angular/cli": "22.2.0-next.2",
"@angular/compiler-cli": "link:./in-existing-linked-by-bazel",
"@types/jasmine": "^6.0.0",
"@types/jasminewd2": "^2.0.8",
File diff suppressed because it is too large Load Diff
@@ -13,15 +13,15 @@
"@angular/core": "link:./in-existing-linked-by-bazel",
"@angular/platform-browser": "link:./in-existing-linked-by-bazel",
"@angular/router": "link:./in-existing-linked-by-bazel",
"@angular/ssr": "22.2.0-next.0",
"@angular/ssr": "22.2.0-next.2",
"rxjs": "^7.0.0",
"tslib": "^2.3.0",
"zone.js": "0.16.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "22.2.0-next.0",
"@angular/build": "22.2.0-next.0",
"@angular/cli": "22.2.0-next.0",
"@angular-devkit/build-angular": "22.2.0-next.2",
"@angular/build": "22.2.0-next.2",
"@angular/cli": "22.2.0-next.2",
"@angular/compiler-cli": "link:./in-existing-linked-by-bazel",
"@types/node": "^20.14.8",
"ts-node": "^10.9.1",
File diff suppressed because it is too large Load Diff
+4 -4
View File
@@ -18,15 +18,15 @@
"@angular/forms": "link:./in-existing-linked-by-bazel",
"@angular/platform-browser": "link:./in-existing-linked-by-bazel",
"@angular/router": "link:./in-existing-linked-by-bazel",
"@angular/ssr": "22.2.0-next.0",
"@angular/ssr": "22.2.0-next.2",
"rxjs": "^7.0.0",
"tslib": "^2.3.0",
"zone.js": "0.16.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "22.2.0-next.0",
"@angular/build": "22.2.0-next.0",
"@angular/cli": "22.2.0-next.0",
"@angular-devkit/build-angular": "22.2.0-next.2",
"@angular/build": "22.2.0-next.2",
"@angular/cli": "22.2.0-next.2",
"@angular/compiler-cli": "link:./in-existing-linked-by-bazel",
"@types/node": "^20.14.8",
"ts-node": "^10.9.1",
+341 -1077
View File
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -25,8 +25,8 @@
"zone.js": "0.16.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "22.2.0-next.0",
"@angular/cli": "22.2.0-next.0",
"@angular-devkit/build-angular": "22.2.0-next.2",
"@angular/cli": "22.2.0-next.2",
"@angular/compiler-cli": "link:./in-existing-linked-by-bazel",
"@types/jasmine": "^6.0.0",
"@types/jasminewd2": "^2.0.8",
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -23,8 +23,8 @@
"zone.js": "0.16.2"
},
"devDependencies": {
"@angular/build": "22.2.0-next.0",
"@angular/cli": "22.2.0-next.0",
"@angular/build": "22.2.0-next.2",
"@angular/cli": "22.2.0-next.2",
"@angular/compiler-cli": "link:./in-existing-linked-by-bazel",
"ts-node": "10.9.2",
"typescript": "6.0.3"
+180 -890
View File
File diff suppressed because it is too large Load Diff
@@ -23,8 +23,8 @@
"zone.js": "0.16.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "22.2.0-next.0",
"@angular/cli": "22.2.0-next.0",
"@angular-devkit/build-angular": "22.2.0-next.2",
"@angular/cli": "22.2.0-next.2",
"@angular/compiler-cli": "link:./in-existing-linked-by-bazel",
"@types/node": "^20.14.8",
"ts-node": "^10.9.1",
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -23,8 +23,8 @@
"zone.js": "0.16.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "22.2.0-next.0",
"@angular/cli": "22.2.0-next.0",
"@angular-devkit/build-angular": "22.2.0-next.2",
"@angular/cli": "22.2.0-next.2",
"@angular/compiler-cli": "link:./in-existing-linked-by-bazel",
"@types/jasmine": "^6.0.0",
"@types/jasminewd2": "^2.0.8",
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -21,8 +21,8 @@
"zone.js": "0.16.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "22.2.0-next.0",
"@angular/cli": "22.2.0-next.0",
"@angular-devkit/build-angular": "22.2.0-next.2",
"@angular/cli": "22.2.0-next.2",
"@angular/compiler-cli": "link:./in-existing-linked-by-bazel",
"@types/node": "^20.14.8",
"typescript": "6.0.3"
File diff suppressed because it is too large Load Diff
@@ -20,15 +20,15 @@
"@angular/platform-browser": "link:./in-existing-linked-by-bazel",
"@angular/platform-server": "link:./in-existing-linked-by-bazel",
"@angular/router": "link:./in-existing-linked-by-bazel",
"@angular/ssr": "22.2.0-next.0",
"@angular/ssr": "22.2.0-next.2",
"rxjs": "^7.0.0",
"tslib": "^2.3.0",
"zone.js": "0.16.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "22.2.0-next.0",
"@angular/build": "22.2.0-next.0",
"@angular/cli": "22.2.0-next.0",
"@angular-devkit/build-angular": "22.2.0-next.2",
"@angular/build": "22.2.0-next.2",
"@angular/cli": "22.2.0-next.2",
"@angular/compiler-cli": "link:./in-existing-linked-by-bazel",
"@types/jasmine": "^6.0.0",
"@types/node": "^20.14.8",
File diff suppressed because it is too large Load Diff
@@ -21,15 +21,15 @@
"@angular/platform-browser": "link:./in-existing-linked-by-bazel",
"@angular/platform-server": "link:./in-existing-linked-by-bazel",
"@angular/router": "link:./in-existing-linked-by-bazel",
"@angular/ssr": "22.2.0-next.0",
"@angular/ssr": "22.2.0-next.2",
"express": "~5.2.0",
"rxjs": "^7.0.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "22.2.0-next.0",
"@angular/build": "22.2.0-next.0",
"@angular/cli": "22.2.0-next.0",
"@angular-devkit/build-angular": "22.2.0-next.2",
"@angular/build": "22.2.0-next.2",
"@angular/cli": "22.2.0-next.2",
"@angular/compiler-cli": "link:./in-existing-linked-by-bazel",
"@types/express": "^5.0.3",
"@types/jasmine": "^6.0.0",
File diff suppressed because it is too large Load Diff
+4 -4
View File
@@ -24,16 +24,16 @@
"@angular/platform-browser": "link:./in-existing-linked-by-bazel",
"@angular/platform-server": "link:./in-existing-linked-by-bazel",
"@angular/router": "link:./in-existing-linked-by-bazel",
"@angular/ssr": "22.2.0-next.0",
"@angular/ssr": "22.2.0-next.2",
"express": "~5.2.0",
"rxjs": "^7.0.0",
"tslib": "^2.3.0",
"zone.js": "0.16.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "22.2.0-next.0",
"@angular/build": "22.2.0-next.0",
"@angular/cli": "22.2.0-next.0",
"@angular-devkit/build-angular": "22.2.0-next.2",
"@angular/build": "22.2.0-next.2",
"@angular/cli": "22.2.0-next.2",
"@angular/compiler-cli": "link:./in-existing-linked-by-bazel",
"@types/express": "^5.0.3",
"@types/jasmine": "^6.0.0",
+319 -1079
View File
File diff suppressed because it is too large Load Diff
@@ -17,15 +17,15 @@
"@angular/core": "link:./in-existing-linked-by-bazel",
"@angular/platform-browser": "link:./in-existing-linked-by-bazel",
"@angular/router": "link:./in-existing-linked-by-bazel",
"@angular/ssr": "22.2.0-next.0",
"@angular/ssr": "22.2.0-next.2",
"rxjs": "^7.0.0",
"tslib": "^2.3.0",
"zone.js": "0.16.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "22.2.0-next.0",
"@angular/build": "22.2.0-next.0",
"@angular/cli": "22.2.0-next.0",
"@angular-devkit/build-angular": "22.2.0-next.2",
"@angular/build": "22.2.0-next.2",
"@angular/cli": "22.2.0-next.2",
"@angular/compiler-cli": "link:./in-existing-linked-by-bazel",
"@types/node": "^20.14.8",
"ts-node": "^10.9.1",
File diff suppressed because it is too large Load Diff
+4 -4
View File
@@ -20,15 +20,15 @@
"@angular/forms": "link:./in-existing-linked-by-bazel",
"@angular/platform-browser": "link:./in-existing-linked-by-bazel",
"@angular/router": "link:./in-existing-linked-by-bazel",
"@angular/ssr": "22.2.0-next.0",
"@angular/ssr": "22.2.0-next.2",
"rxjs": "^7.0.0",
"tslib": "^2.3.0",
"zone.js": "0.16.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "22.2.0-next.0",
"@angular/build": "22.2.0-next.0",
"@angular/cli": "22.2.0-next.0",
"@angular-devkit/build-angular": "22.2.0-next.2",
"@angular/build": "22.2.0-next.2",
"@angular/cli": "22.2.0-next.2",
"@angular/compiler-cli": "link:./in-existing-linked-by-bazel",
"@types/jasmine": "^6.0.0",
"@types/node": "^20.14.8",
+340 -830
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -2,7 +2,7 @@
"dependencies": {
"@angular/animations": "workspace:*",
"@angular/benchpress": "workspace:*",
"@angular/build": "22.2.0-next.0",
"@angular/build": "22.2.0-next.2",
"@angular/common": "workspace:*",
"@angular/compiler": "workspace:*",
"@angular/compiler-cli": "workspace:*",
+10 -10
View File
@@ -55,14 +55,14 @@
},
"// 1": "dependencies are used locally and by bazel",
"dependencies": {
"@angular-devkit/core": "22.2.0-next.0",
"@angular-devkit/schematics": "22.2.0-next.0",
"@angular-devkit/core": "22.2.0-next.2",
"@angular-devkit/schematics": "22.2.0-next.2",
"@angular/animations": "workspace:*",
"@angular/aria": "22.1.0-rc.0",
"@angular/aria": "22.2.0-next.0",
"@angular/benchpress": "workspace: *",
"@angular/build": "22.2.0-next.1",
"@angular/cdk": "22.1.0-rc.0",
"@angular/cli": "22.2.0-next.0",
"@angular/build": "22.2.0-next.2",
"@angular/cdk": "22.2.0-next.0",
"@angular/cli": "22.2.0-next.2",
"@angular/common": "workspace:*",
"@angular/compiler": "workspace:*",
"@angular/compiler-cli": "workspace:*",
@@ -71,20 +71,20 @@
"@angular/forms": "workspace:*",
"@angular/language-service": "workspace: *",
"@angular/localize": "workspace: *",
"@angular/material": "22.1.0-rc.0",
"@angular/material": "22.2.0-next.0",
"@angular/platform-browser": "workspace:*",
"@angular/platform-browser-dynamic": "workspace:*",
"@angular/platform-server": "workspace:*",
"@angular/router": "workspace:*",
"@angular/service-worker": "workspace:*",
"@angular/ssr": "22.2.0-next.0",
"@angular/ssr": "22.2.0-next.2",
"@angular/upgrade": "workspace: *",
"@babel/cli": "8.0.4",
"@babel/core": "8.0.1",
"@babel/generator": "8.0.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@schematics/angular": "22.2.0-next.0",
"@schematics/angular": "22.2.0-next.2",
"@types/angular": "^1.6.47",
"@types/chrome": "^0.2.0",
"@types/dom-navigation": "^1.0.5",
@@ -136,7 +136,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#dcf9b6776377d5d301e054111add3ef80f433b70",
"@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#c71d9b6af7560faa3d002534d416a8045111adae",
"@bazel/bazelisk": "^1.7.5",
"@bazel/buildifier": "^8.0.0",
"@bazel/ibazel": "0.28.0",
+1 -1
View File
@@ -1,7 +1,7 @@
{
"dependencies": {
"@angular/animations": "workspace:*",
"@angular/build": "22.2.0-next.0",
"@angular/build": "22.2.0-next.2",
"@angular/common": "workspace:*",
"@angular/compiler-cli": "workspace:*",
"@angular/compiler": "workspace:*",
+522 -1194
View File
File diff suppressed because it is too large Load Diff