├── .bazelignore ├── .bazelrc ├── .bazelversion ├── .editorconfig ├── .github ├── local-actions │ ├── BUILD.bazel │ ├── branch-manager │ │ ├── BUILD.bazel │ │ ├── action.yml │ │ ├── lib │ │ │ ├── git.ts │ │ │ ├── main.ts │ │ │ └── tmp.ts │ │ ├── main.js │ │ └── package.json │ ├── labels-sync │ │ ├── BUILD.bazel │ │ ├── README.md │ │ ├── action.yml │ │ ├── lib │ │ │ └── main.ts │ │ ├── main.js │ │ └── package.json │ ├── lock-closed │ │ ├── BUILD.bazel │ │ ├── action.yml │ │ ├── lib │ │ │ └── main.ts │ │ ├── main.js │ │ └── package.json │ ├── package.json │ └── tsconfig.json ├── ng-renovate │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── pnpm-lock.yaml │ ├── pnpm-workspace.yaml │ └── runner-config.js └── workflows │ ├── assistant-to-the-branch-manager.yml │ ├── branch-manager.yml │ ├── ci.yml │ ├── codeql.yml │ ├── commit-message-based-labels.yml │ ├── feature-request.yml │ ├── gemini-review.yml │ ├── ng-renovate.yml │ ├── org-wide-actions.yml │ ├── perf.yml │ ├── post-approval-changes.yml │ ├── pr.yml │ ├── publish-snapshots.yml │ ├── scorecard.yml │ └── test-required-workflow.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .ng-dev ├── commit-message.mjs ├── config.mjs ├── dx-perf-workflows.yml ├── format.mjs ├── github.mjs ├── perf-tests │ └── test-rerun.diff └── pull-request.mjs ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .pullapprove.yml ├── BUILD.bazel ├── CHANGELOG.md ├── CHANGELOG_ARCHIVE.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── MODULE.bazel ├── MODULE.bazel.lock ├── README.md ├── SECURITY.md ├── apps ├── .firebaserc ├── BUILD.bazel ├── code-of-conduct │ ├── BUILD.bazel │ ├── app │ │ ├── BUILD.bazel │ │ ├── account │ │ │ ├── BUILD.bazel │ │ │ ├── account.component.html │ │ │ ├── account.component.scss │ │ │ ├── account.component.ts │ │ │ ├── account.guard.ts │ │ │ ├── account.service.ts │ │ │ └── index.ts │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.ts │ │ ├── app.routes.ts │ │ ├── block-user │ │ │ ├── BUILD.bazel │ │ │ ├── block-user.component.html │ │ │ ├── block-user.component.scss │ │ │ └── block-user.component.ts │ │ ├── block.service.ts │ │ ├── login │ │ │ ├── BUILD.bazel │ │ │ ├── login.component.html │ │ │ ├── login.component.scss │ │ │ └── login.component.ts │ │ ├── main │ │ │ ├── BUILD.bazel │ │ │ ├── main.component.html │ │ │ ├── main.component.scss │ │ │ └── main.component.ts │ │ └── user-table │ │ │ ├── BUILD.bazel │ │ │ ├── user-table.component.html │ │ │ ├── user-table.component.scss │ │ │ └── user-table.component.ts │ ├── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── package.json │ ├── robots.txt │ └── styles.scss ├── firebase.json ├── firestore.indexes.json ├── firestore.rules ├── functions │ ├── BUILD.bazel │ ├── code-of-conduct │ │ ├── BUILD.bazel │ │ ├── blockUser.ts │ │ ├── index.ts │ │ ├── shared.ts │ │ ├── syncUsers.ts │ │ └── unblockUser.ts │ ├── dns-redirecting │ │ ├── BUILD.bazel │ │ └── index.ts │ ├── index.ts │ └── package.json └── tsconfig.json ├── bazel ├── BUILD.bazel ├── api-golden │ ├── BUILD.bazel │ ├── api_golden_test.bzl │ ├── api_golden_test_npm_package.bzl │ ├── find_entry_points.ts │ ├── index.bzl │ ├── index_npm_packages.cts │ ├── package.json │ ├── path-normalize.ts │ ├── test │ │ ├── BUILD.bazel │ │ ├── fixtures │ │ │ ├── BUILD.bazel │ │ │ ├── pkg_no_exports_field │ │ │ │ ├── index.d.ts │ │ │ │ ├── package.json │ │ │ │ └── testing │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── nested.d.ts │ │ │ │ │ ├── nested │ │ │ │ │ └── package.json │ │ │ │ │ └── package.json │ │ │ ├── test_fixture.ts │ │ │ ├── test_package │ │ │ │ ├── index.d.ts │ │ │ │ ├── package.json │ │ │ │ ├── shared_chunk.d.ts │ │ │ │ └── testing │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── nested.d.ts │ │ │ └── transitive_target │ │ │ │ ├── BUILD.bazel │ │ │ │ └── index.ts │ │ └── goldens │ │ │ ├── explicit_file │ │ │ └── index.api.md │ │ │ ├── pkg_no_exports_field │ │ │ ├── index.api.md │ │ │ └── testing │ │ │ │ ├── index.api.md │ │ │ │ └── nested │ │ │ │ └── index.api.md │ │ │ └── test_package │ │ │ ├── index.api.md │ │ │ └── testing │ │ │ ├── index.api.md │ │ │ └── nested │ │ │ └── index.api.md │ └── test_api_report.ts ├── constraints │ └── BUILD.bazel ├── expand_template.bzl ├── extract_types.bzl ├── filter_outputs.bzl ├── git-toolchain │ ├── BUILD.bazel │ ├── alias.bzl │ └── toolchain.bzl ├── http-server │ ├── BUILD.bazel │ ├── ibazel.mts │ ├── index.bzl │ ├── launcher_template.sh │ ├── main.mts │ ├── server.mts │ └── test │ │ ├── BUILD.bazel │ │ ├── index.html │ │ ├── main.ts │ │ ├── server-test.ts │ │ └── tsconfig.app.json ├── integration │ ├── BUILD.bazel │ ├── index.bzl │ ├── test_runner │ │ ├── BUILD.bazel │ │ ├── bazel.mts │ │ ├── constants.mts │ │ ├── debug.mts │ │ ├── file_system_utils.mts │ │ ├── main.mts │ │ ├── package_json.mts │ │ ├── process_utils.mts │ │ ├── runner.mts │ │ └── size-tracking.mts │ └── tests │ │ ├── angular-cli │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── BUILD.bazel │ │ ├── README.md │ │ ├── angular.json │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ ├── pnpm-workspace.yaml │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.spec.ts │ │ │ │ ├── app.component.ts │ │ │ │ └── app.module.ts │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ └── styles.css │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ └── tsconfig.spec.json │ │ ├── custom_env_variables │ │ ├── BUILD.bazel │ │ └── test.js │ │ ├── external_command_script │ │ ├── BUILD.bazel │ │ └── external_script.sh │ │ ├── nested_bazel_workspaces │ │ ├── BUILD.bazel │ │ └── basic │ │ │ ├── .bazelrc │ │ │ ├── BUILD.bazel │ │ │ ├── WORKSPACE │ │ │ ├── package.json │ │ │ ├── pnpm-lock.yaml │ │ │ ├── pnpm-workspace.yaml │ │ │ └── some_test.sh │ │ ├── package_mappings │ │ ├── BUILD.bazel │ │ ├── fake_pkg_srcs │ │ │ ├── BUILD.bazel │ │ │ ├── index.mjs │ │ │ └── package.json │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ ├── pnpm-workspace.yaml │ │ └── test.mjs │ │ └── playwright_chromium │ │ ├── BUILD.bazel │ │ ├── package.json │ │ ├── playwright.config.ts │ │ ├── pnpm-lock.yaml │ │ ├── pnpm-workspace.yaml │ │ ├── test_page │ │ └── index.html │ │ ├── tests │ │ └── first.spec.ts │ │ └── tsconfig.json ├── jasmine │ ├── BUILD.bazel │ ├── jasmine.bzl │ └── stack-traces.mjs ├── package.json ├── private │ ├── BUILD.bazel │ ├── manifest_path.bzl │ ├── node_loader │ │ ├── BUILD.bazel │ │ ├── hooks.mjs │ │ └── index.mjs │ └── path_relative_to_label.bzl ├── remote-execution │ ├── BUILD.bazel │ ├── Dockerfile │ ├── README.md │ └── index.bzl ├── spec-bundling │ ├── BUILD.bazel │ ├── index.bzl │ ├── spec-entrypoint.bzl │ └── test │ │ ├── BUILD.bazel │ │ ├── async-await.spec.ts │ │ ├── core_apf_esm_test.ts │ │ ├── core_invalid_linker_decl.spec.ts │ │ ├── ensure-transitive-loaded.spec.ts │ │ ├── package.json │ │ ├── should_be_picked_up.spec.ts │ │ ├── some_spec.js │ │ └── tsconfig.json ├── test │ ├── BUILD.bazel │ ├── extract_types_test.js │ ├── fixture.ts │ ├── fixture.txt │ └── transitive_file.ts ├── ts_project │ ├── BUILD.bazel │ ├── index.bzl │ └── strict_deps │ │ ├── BUILD.bazel │ │ ├── diagnostic.mts │ │ ├── index.bzl │ │ ├── index.mts │ │ ├── manifest.mts │ │ ├── test │ │ ├── BUILD.bazel │ │ ├── depth │ │ │ ├── BUILD.bazel │ │ │ ├── file.ts │ │ │ └── tsconfig.json │ │ ├── import_from_depth.ts │ │ ├── import_from_mts_cts_extensions │ │ │ ├── BUILD.bazel │ │ │ ├── common_extension.cts │ │ │ ├── index.ts │ │ │ ├── module_extension.mts │ │ │ └── tsconfig.json │ │ ├── import_node_module.ts │ │ ├── import_npm_module.ts │ │ ├── import_npm_module │ │ │ ├── BUILD.bazel │ │ │ ├── index.ts │ │ │ └── tsconfig.json │ │ ├── sibling_import_from_depth.ts │ │ ├── transitive_from_depth.ts │ │ └── tsconfig.json │ │ ├── tsconfig.json │ │ ├── tsconfig.mts │ │ └── visitor.mts ├── tsconfig.json └── validation │ ├── BUILD.bazel │ ├── defs.bzl │ └── verify-typescript.mjs ├── github-actions ├── BUILD.bazel ├── bazel │ ├── configure-remote │ │ ├── BUILD.bazel │ │ ├── action.yml │ │ ├── configure-remote.js │ │ ├── constants.ts │ │ ├── encrypt.ts │ │ ├── gcp_token.data │ │ ├── index.ts │ │ └── package.json │ └── setup │ │ ├── action.yml │ │ └── setup-ci-bazelrc.mjs ├── branch-manager │ ├── BUILD.bazel │ ├── action.yml │ ├── lib │ │ └── main.ts │ ├── main.js │ └── package.json ├── browserstack │ ├── BUILD.bazel │ ├── action.yml │ ├── browserstack_token.data │ ├── constants.ts │ ├── encrypt.ts │ ├── index.ts │ ├── package.json │ └── set-browserstack-env.js ├── feature-request │ ├── BUILD.bazel │ ├── README.md │ ├── action.yml │ ├── lib │ │ ├── action.spec.ts │ │ ├── action.ts │ │ ├── api.ts │ │ ├── get-input.spec.ts │ │ ├── get-input.ts │ │ ├── log.ts │ │ ├── main.ts │ │ ├── octokit.ts │ │ └── testing.ts │ ├── main.js │ └── package.json ├── google-internal-tests │ ├── BUILD.bazel │ ├── action.yml │ ├── lib │ │ └── main.ts │ ├── main.js │ └── package.json ├── linting │ └── licenses │ │ ├── action.yml │ │ └── dependency-review-config.yml ├── npm │ └── checkout-and-setup-node │ │ └── action.yml ├── org-file-sync │ ├── BUILD.bazel │ ├── README.md │ ├── action.yml │ ├── lib │ │ └── main.ts │ ├── main.js │ └── package.json ├── package.json ├── post-approval-changes │ ├── BUILD.bazel │ ├── action.yml │ ├── lib │ │ └── main.ts │ ├── main.js │ └── package.json ├── previews │ ├── BUILD.bazel │ ├── constants.ts │ ├── pack-and-upload-artifact │ │ ├── BUILD.bazel │ │ ├── action.yml │ │ ├── inject-artifact-metadata.js │ │ ├── lib │ │ │ └── inject-artifact-metadata.ts │ │ └── package.json │ └── upload-artifacts-to-firebase │ │ ├── BUILD.bazel │ │ ├── action.yml │ │ ├── extract-artifact-metadata.js │ │ ├── fetch-workflow-artifact.js │ │ ├── lib │ │ ├── extract-artifact-metadata.ts │ │ └── fetch-workflow-artifact.ts │ │ └── package.json ├── pull-request-labeling │ ├── BUILD.bazel │ ├── action.yml │ ├── lib │ │ └── main.ts │ ├── main.js │ └── package.json ├── saucelabs │ ├── BUILD.bazel │ ├── action.yml │ ├── constants.ts │ ├── encrypt.ts │ ├── index.ts │ ├── package.json │ ├── saucelabs_token.data │ └── set-saucelabs-env.js ├── setup-wsl │ └── action.yml ├── tsconfig-test.json ├── tsconfig.json ├── unified-status-check │ ├── BUILD.bazel │ ├── action.yml │ ├── lib │ │ ├── main.ts │ │ ├── pull-request.ts │ │ ├── validator.ts │ │ └── validators │ │ │ ├── draft-mode.ts │ │ │ ├── labels.ts │ │ │ └── statuses.ts │ ├── main.js │ └── package.json └── utils.ts ├── lint-rules ├── stylelint │ ├── no-concrete-rules.ts │ ├── no-import.ts │ ├── no-unused-import.ts │ ├── selector-no-deep.ts │ ├── single-line-comment-only.ts │ └── tsx-loader-rule.js └── tslint │ ├── noImplicitOverrideAbstractRule.ts │ ├── tsxLoaderRule.js │ └── validateImportForEsmCjsInteropRule.ts ├── ng-dev ├── BUILD.bazel ├── ai │ ├── BUILD.bazel │ ├── cli.ts │ ├── consts.ts │ ├── fix.ts │ └── migrate.ts ├── auth │ ├── BUILD.bazel │ ├── cli.ts │ ├── login │ │ ├── BUILD.bazel │ │ └── cli.ts │ └── logout │ │ ├── BUILD.bazel │ │ └── cli.ts ├── caretaker │ ├── BUILD.bazel │ ├── check │ │ ├── base.spec.ts │ │ ├── base.ts │ │ ├── check.ts │ │ ├── ci.spec.ts │ │ ├── ci.ts │ │ ├── cli.ts │ │ ├── g3.spec.ts │ │ ├── g3.ts │ │ ├── github.spec.ts │ │ ├── github.ts │ │ ├── services.spec.ts │ │ └── services.ts │ ├── cli.ts │ ├── handoff │ │ ├── cli.ts │ │ ├── update-github-team.ts │ │ └── verify-merge-mode.ts │ └── merge-mode │ │ ├── cli.ts │ │ ├── release.ts │ │ └── reset.ts ├── cli.ts ├── commit-message │ ├── BUILD.bazel │ ├── cli.ts │ ├── config.ts │ ├── parse.spec.ts │ ├── parse.ts │ ├── restore-commit-message │ │ ├── cli.ts │ │ ├── commit-message-draft.ts │ │ ├── commit-message-source.ts │ │ └── restore-commit-message.ts │ ├── test-util.ts │ ├── utils.ts │ ├── validate-file │ │ ├── cli.ts │ │ └── validate-file.ts │ ├── validate-range │ │ ├── cli.ts │ │ └── validate-range.ts │ ├── validate.spec.ts │ └── validate.ts ├── config │ ├── BUILD.bazel │ ├── cli.ts │ └── validate │ │ ├── BUILD.bazel │ │ ├── cli.ts │ │ ├── portability.ts │ │ └── validity.ts ├── format │ ├── BUILD.bazel │ ├── all.ts │ ├── changed.ts │ ├── cli.ts │ ├── config.ts │ ├── files.ts │ ├── format.ts │ ├── formatters │ │ ├── base-formatter.ts │ │ ├── buildifier.ts │ │ ├── index.ts │ │ └── prettier.ts │ ├── run-commands-parallel.ts │ └── staged.ts ├── index.ts ├── misc │ ├── BUILD.bazel │ ├── build-and-link │ │ └── cli.ts │ ├── cli.ts │ ├── generate-nodejs-toolchain │ │ └── cli.ts │ └── generated-files │ │ ├── cli.ts │ │ └── update-generated-files.ts ├── ngbot │ ├── BUILD.bazel │ ├── cli.ts │ └── verify.ts ├── package.json ├── perf │ ├── BUILD.bazel │ ├── cli.ts │ └── workflow │ │ ├── BUILD.bazel │ │ ├── cli.ts │ │ ├── database.ts │ │ ├── loader.ts │ │ └── workflow.ts ├── pr │ ├── BUILD.bazel │ ├── check-target-branches │ │ ├── BUILD.bazel │ │ ├── check-target-branches.ts │ │ └── cli.ts │ ├── checkout │ │ ├── BUILD.bazel │ │ ├── checkout.ts │ │ ├── cli.ts │ │ ├── commit-message-filter.ts │ │ ├── takeover.ts │ │ └── target.ts │ ├── cli.ts │ ├── common │ │ ├── BUILD.bazel │ │ ├── checkout-pr.ts │ │ ├── fetch-pull-request.ts │ │ ├── labels │ │ │ ├── BUILD.bazel │ │ │ ├── action.ts │ │ │ ├── base.ts │ │ │ ├── feature.ts │ │ │ ├── index.ts │ │ │ ├── managed.ts │ │ │ ├── merge.ts │ │ │ ├── misc.ts │ │ │ ├── needs.ts │ │ │ ├── priority.ts │ │ │ ├── requires.ts │ │ │ ├── target.ts │ │ │ └── validate-labels.spec.ts │ │ ├── targeting │ │ │ ├── labels.ts │ │ │ ├── lts-branch.ts │ │ │ └── target-label.ts │ │ ├── test │ │ │ ├── BUILD.bazel │ │ │ └── common.spec.ts │ │ └── validation │ │ │ ├── assert-allowed-target-label.ts │ │ │ ├── assert-breaking-change-info.ts │ │ │ ├── assert-completed-reviews.ts │ │ │ ├── assert-enforce-tested.ts │ │ │ ├── assert-enforced-statuses.ts │ │ │ ├── assert-isolated-separate-files.ts │ │ │ ├── assert-merge-ready.ts │ │ │ ├── assert-minimum-reviews.ts │ │ │ ├── assert-passing-ci.ts │ │ │ ├── assert-pending.ts │ │ │ ├── assert-signed-cla.ts │ │ │ ├── validate-pull-request.ts │ │ │ ├── validation-config.ts │ │ │ └── validation-failure.ts │ ├── config │ │ ├── BUILD.bazel │ │ └── index.ts │ ├── discover-new-conflicts │ │ ├── BUILD.bazel │ │ ├── cli.ts │ │ └── index.ts │ ├── merge │ │ ├── BUILD.bazel │ │ ├── cli.ts │ │ ├── failures.ts │ │ ├── integration.spec.ts │ │ ├── merge-pull-request.ts │ │ ├── merge-tool.ts │ │ ├── messages.ts │ │ ├── pull-request.ts │ │ └── strategies │ │ │ ├── api-merge.ts │ │ │ ├── autosquash-merge.ts │ │ │ ├── commit-message-filter.ts │ │ │ └── strategy.ts │ └── rebase │ │ ├── BUILD.bazel │ │ ├── cli.ts │ │ └── index.ts ├── pullapprove │ ├── BUILD.bazel │ ├── cli.ts │ ├── condition_errors.ts │ ├── condition_evaluator.ts │ ├── group.ts │ ├── logging.ts │ ├── parse-yaml.ts │ ├── pullapprove_arrays.ts │ ├── utils.ts │ ├── verify.spec.ts │ └── verify.ts ├── release │ ├── BUILD.bazel │ ├── build │ │ ├── BUILD.bazel │ │ ├── build-worker.ts │ │ ├── build.spec.ts │ │ ├── cli.ts │ │ └── index.ts │ ├── cli.ts │ ├── config │ │ ├── BUILD.bazel │ │ └── index.ts │ ├── info │ │ ├── BUILD.bazel │ │ └── cli.ts │ ├── notes │ │ ├── BUILD.bazel │ │ ├── changelog.spec.ts │ │ ├── changelog.ts │ │ ├── cli.ts │ │ ├── commits │ │ │ ├── get-commits-in-range.png │ │ │ ├── get-commits-in-range.ts │ │ │ └── unique-commit-id.ts │ │ ├── context.ts │ │ ├── release-notes.ts │ │ └── templates │ │ │ ├── changelog.ts │ │ │ └── github-release.ts │ ├── npm-dist-tag │ │ ├── BUILD.bazel │ │ ├── cli.ts │ │ ├── delete │ │ │ ├── BUILD.bazel │ │ │ ├── cli.ts │ │ │ └── delete-dist-tag.spec.ts │ │ └── set │ │ │ ├── BUILD.bazel │ │ │ ├── cli.ts │ │ │ └── set-dist-tag.spec.ts │ ├── precheck │ │ ├── BUILD.bazel │ │ ├── cli.ts │ │ ├── index.ts │ │ └── precheck.spec.ts │ ├── publish │ │ ├── BUILD.bazel │ │ ├── actions-error.ts │ │ ├── actions.ts │ │ ├── actions │ │ │ ├── configure-next-as-major.ts │ │ │ ├── cut-lts-patch.ts │ │ │ ├── cut-new-patch.ts │ │ │ ├── cut-npm-next-prerelease.ts │ │ │ ├── cut-npm-next-release-candidate.ts │ │ │ ├── cut-stable.ts │ │ │ ├── exceptional-minor │ │ │ │ ├── cut-exceptional-minor-prerelease.ts │ │ │ │ ├── cut-exceptional-minor-release-candidate.ts │ │ │ │ └── prepare-exceptional-minor.ts │ │ │ ├── index.ts │ │ │ ├── move-next-into-feature-freeze.ts │ │ │ ├── move-next-into-release-candidate.ts │ │ │ ├── renovate-config-updates.ts │ │ │ ├── shared │ │ │ │ ├── branch-off-next-branch.ts │ │ │ │ └── cut-prerelease.ts │ │ │ ├── special │ │ │ │ └── cut-lts-minor.ts │ │ │ └── tag-recent-major-as-latest.ts │ │ ├── built-package-info.ts │ │ ├── cli.ts │ │ ├── commit-message.ts │ │ ├── constants.ts │ │ ├── directory-hash.ts │ │ ├── external-commands.ts │ │ ├── index.ts │ │ ├── pnpm-versioning.ts │ │ ├── prompt-merge.ts │ │ ├── pull-request-state.ts │ │ └── test │ │ │ ├── BUILD.bazel │ │ │ ├── branch-off-next-branch-testing.ts │ │ │ ├── common.spec.ts │ │ │ ├── configure-next-as-major.spec.ts │ │ │ ├── cut-lts-patch.spec.ts │ │ │ ├── cut-new-patch.spec.ts │ │ │ ├── cut-npm-next-prerelease.spec.ts │ │ │ ├── cut-npm-next-release-candidate.spec.ts │ │ │ ├── cut-stable.spec.ts │ │ │ ├── delegate-test-action.ts │ │ │ ├── exceptional-minor │ │ │ ├── cut-exceptional-minor-prerelease.spec.ts │ │ │ ├── cut-exceptional-minor-release-candidate.spec.ts │ │ │ └── prepare-exceptional-minor.spec.ts │ │ │ ├── move-next-into-feature-freeze.spec.ts │ │ │ ├── move-next-into-release-candidate.spec.ts │ │ │ ├── output-checks.spec.ts │ │ │ ├── release-notes │ │ │ ├── context.spec.ts │ │ │ └── generation.spec.ts │ │ │ ├── tag-recent-major-as-latest.spec.ts │ │ │ └── test-utils │ │ │ ├── action-mocks.ts │ │ │ ├── staging-test.ts │ │ │ ├── test-action.ts │ │ │ └── test-utils.ts │ ├── set-dist-tag │ │ ├── BUILD.bazel │ │ ├── README.md │ │ └── cli.ts │ ├── stamping │ │ ├── BUILD.bazel │ │ ├── _private_main.ts │ │ ├── cli.ts │ │ └── env-stamp.ts │ └── versioning │ │ ├── BUILD.bazel │ │ ├── README.md │ │ ├── active-release-trains.ts │ │ ├── experimental-versions.ts │ │ ├── index.ts │ │ ├── long-term-support.ts │ │ ├── npm-command.ts │ │ ├── npm-registry.ts │ │ ├── prerelease-version.ts │ │ ├── print-active-trains.ts │ │ ├── release-trains.ts │ │ ├── test │ │ ├── BUILD.bazel │ │ └── active-release-trains.spec.ts │ │ ├── version-branches.ts │ │ └── version-tags.ts ├── ts-circular-dependencies │ ├── BUILD.bazel │ ├── README.md │ ├── analyzer.ts │ ├── config.ts │ ├── example-graph.png │ ├── file_system.ts │ ├── golden.ts │ ├── index.ts │ └── parser.ts ├── tsconfig-test.json ├── tsconfig.json └── utils │ ├── BUILD.bazel │ ├── bazel-bin.ts │ ├── child-process.ts │ ├── config-assertions.ts │ ├── config-cache.ts │ ├── config.ts │ ├── constants.ts │ ├── dry-run.ts │ ├── g3-sync-config.ts │ ├── g3.ts │ ├── git │ ├── authenticated-git-client.ts │ ├── git-client.ts │ ├── github-macros.ts │ ├── github-urls.ts │ ├── github-yargs.ts │ ├── github.ts │ ├── graphql-queries.ts │ ├── octokit-types.ts │ └── repository-merge-mode.ts │ ├── github.ts │ ├── locale.ts │ ├── logging.ts │ ├── nodejs-errors.ts │ ├── prompt.ts │ ├── read-stdin-until-closed.ts │ ├── repo-directory.ts │ ├── resolve-yarn-bin.ts │ ├── semver.ts │ ├── spinner.ts │ ├── test │ ├── BUILD.bazel │ ├── g3.spec.ts │ └── resolve-yarn-bin.spec.ts │ ├── testing │ ├── BUILD.bazel │ ├── bazel-env.ts │ ├── dedent.ts │ ├── git-client-mock.ts │ ├── github-api-testing.ts │ ├── github-interception.ts │ ├── github-pagination-header.ts │ ├── index.ts │ ├── sandbox-git-client.ts │ ├── sandbox-testing.ts │ ├── semver-matchers.ts │ ├── virtual-git-client.ts │ └── virtual-git-matchers.ts │ ├── version-check.ts │ └── yargs.ts ├── package.bzl ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── renovate-presets └── default.json5 ├── renovate.json ├── tools ├── BUILD.bazel ├── bazel-patches │ └── build_bazel_rules_nodejs.patch ├── defaults.bzl ├── local-dev.sh ├── package.json └── publish_to_github.sh ├── tsconfig.json └── tslint.json /.bazelignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.bazelignore -------------------------------------------------------------------------------- /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.bazelrc -------------------------------------------------------------------------------- /.bazelversion: -------------------------------------------------------------------------------- 1 | 8.4.2 2 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/local-actions/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/local-actions/BUILD.bazel -------------------------------------------------------------------------------- /.github/local-actions/branch-manager/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/local-actions/branch-manager/BUILD.bazel -------------------------------------------------------------------------------- /.github/local-actions/branch-manager/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/local-actions/branch-manager/action.yml -------------------------------------------------------------------------------- /.github/local-actions/branch-manager/lib/git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/local-actions/branch-manager/lib/git.ts -------------------------------------------------------------------------------- /.github/local-actions/branch-manager/lib/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/local-actions/branch-manager/lib/main.ts -------------------------------------------------------------------------------- /.github/local-actions/branch-manager/lib/tmp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/local-actions/branch-manager/lib/tmp.ts -------------------------------------------------------------------------------- /.github/local-actions/branch-manager/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/local-actions/branch-manager/main.js -------------------------------------------------------------------------------- /.github/local-actions/branch-manager/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/local-actions/branch-manager/package.json -------------------------------------------------------------------------------- /.github/local-actions/labels-sync/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/local-actions/labels-sync/BUILD.bazel -------------------------------------------------------------------------------- /.github/local-actions/labels-sync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/local-actions/labels-sync/README.md -------------------------------------------------------------------------------- /.github/local-actions/labels-sync/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/local-actions/labels-sync/action.yml -------------------------------------------------------------------------------- /.github/local-actions/labels-sync/lib/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/local-actions/labels-sync/lib/main.ts -------------------------------------------------------------------------------- /.github/local-actions/labels-sync/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/local-actions/labels-sync/main.js -------------------------------------------------------------------------------- /.github/local-actions/labels-sync/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/local-actions/labels-sync/package.json -------------------------------------------------------------------------------- /.github/local-actions/lock-closed/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/local-actions/lock-closed/BUILD.bazel -------------------------------------------------------------------------------- /.github/local-actions/lock-closed/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/local-actions/lock-closed/action.yml -------------------------------------------------------------------------------- /.github/local-actions/lock-closed/lib/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/local-actions/lock-closed/lib/main.ts -------------------------------------------------------------------------------- /.github/local-actions/lock-closed/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/local-actions/lock-closed/main.js -------------------------------------------------------------------------------- /.github/local-actions/lock-closed/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/local-actions/lock-closed/package.json -------------------------------------------------------------------------------- /.github/local-actions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/local-actions/package.json -------------------------------------------------------------------------------- /.github/local-actions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/local-actions/tsconfig.json -------------------------------------------------------------------------------- /.github/ng-renovate/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.github/ng-renovate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/ng-renovate/README.md -------------------------------------------------------------------------------- /.github/ng-renovate/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/ng-renovate/package.json -------------------------------------------------------------------------------- /.github/ng-renovate/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/ng-renovate/pnpm-lock.yaml -------------------------------------------------------------------------------- /.github/ng-renovate/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/ng-renovate/pnpm-workspace.yaml -------------------------------------------------------------------------------- /.github/ng-renovate/runner-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/ng-renovate/runner-config.js -------------------------------------------------------------------------------- /.github/workflows/assistant-to-the-branch-manager.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/workflows/assistant-to-the-branch-manager.yml -------------------------------------------------------------------------------- /.github/workflows/branch-manager.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/workflows/branch-manager.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/commit-message-based-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/workflows/commit-message-based-labels.yml -------------------------------------------------------------------------------- /.github/workflows/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/workflows/feature-request.yml -------------------------------------------------------------------------------- /.github/workflows/gemini-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/workflows/gemini-review.yml -------------------------------------------------------------------------------- /.github/workflows/ng-renovate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/workflows/ng-renovate.yml -------------------------------------------------------------------------------- /.github/workflows/org-wide-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/workflows/org-wide-actions.yml -------------------------------------------------------------------------------- /.github/workflows/perf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/workflows/perf.yml -------------------------------------------------------------------------------- /.github/workflows/post-approval-changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/workflows/post-approval-changes.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/publish-snapshots.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/workflows/publish-snapshots.yml -------------------------------------------------------------------------------- /.github/workflows/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/workflows/scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/test-required-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.github/workflows/test-required-workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | pnpm --silent ng-dev format staged; 3 | -------------------------------------------------------------------------------- /.ng-dev/commit-message.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.ng-dev/commit-message.mjs -------------------------------------------------------------------------------- /.ng-dev/config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.ng-dev/config.mjs -------------------------------------------------------------------------------- /.ng-dev/dx-perf-workflows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.ng-dev/dx-perf-workflows.yml -------------------------------------------------------------------------------- /.ng-dev/format.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.ng-dev/format.mjs -------------------------------------------------------------------------------- /.ng-dev/github.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.ng-dev/github.mjs -------------------------------------------------------------------------------- /.ng-dev/perf-tests/test-rerun.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.ng-dev/perf-tests/test-rerun.diff -------------------------------------------------------------------------------- /.ng-dev/pull-request.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.ng-dev/pull-request.mjs -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22.21.1 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.prettierrc -------------------------------------------------------------------------------- /.pullapprove.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/.pullapprove.yml -------------------------------------------------------------------------------- /BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/BUILD.bazel -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG_ARCHIVE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/CHANGELOG_ARCHIVE.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/LICENSE -------------------------------------------------------------------------------- /MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/MODULE.bazel -------------------------------------------------------------------------------- /MODULE.bazel.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/MODULE.bazel.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # dev-infra 2 | 3 | Angular Development Infrastructure 4 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/SECURITY.md -------------------------------------------------------------------------------- /apps/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/.firebaserc -------------------------------------------------------------------------------- /apps/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/BUILD.bazel -------------------------------------------------------------------------------- /apps/code-of-conduct/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/BUILD.bazel -------------------------------------------------------------------------------- /apps/code-of-conduct/app/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/app/BUILD.bazel -------------------------------------------------------------------------------- /apps/code-of-conduct/app/account/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/app/account/BUILD.bazel -------------------------------------------------------------------------------- /apps/code-of-conduct/app/account/account.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/app/account/account.component.html -------------------------------------------------------------------------------- /apps/code-of-conduct/app/account/account.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/app/account/account.component.scss -------------------------------------------------------------------------------- /apps/code-of-conduct/app/account/account.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/app/account/account.component.ts -------------------------------------------------------------------------------- /apps/code-of-conduct/app/account/account.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/app/account/account.guard.ts -------------------------------------------------------------------------------- /apps/code-of-conduct/app/account/account.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/app/account/account.service.ts -------------------------------------------------------------------------------- /apps/code-of-conduct/app/account/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/app/account/index.ts -------------------------------------------------------------------------------- /apps/code-of-conduct/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/app/app.component.html -------------------------------------------------------------------------------- /apps/code-of-conduct/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/app/app.component.scss -------------------------------------------------------------------------------- /apps/code-of-conduct/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/app/app.component.ts -------------------------------------------------------------------------------- /apps/code-of-conduct/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/app/app.routes.ts -------------------------------------------------------------------------------- /apps/code-of-conduct/app/block-user/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/app/block-user/BUILD.bazel -------------------------------------------------------------------------------- /apps/code-of-conduct/app/block-user/block-user.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/app/block-user/block-user.component.html -------------------------------------------------------------------------------- /apps/code-of-conduct/app/block-user/block-user.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/app/block-user/block-user.component.scss -------------------------------------------------------------------------------- /apps/code-of-conduct/app/block-user/block-user.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/app/block-user/block-user.component.ts -------------------------------------------------------------------------------- /apps/code-of-conduct/app/block.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/app/block.service.ts -------------------------------------------------------------------------------- /apps/code-of-conduct/app/login/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/app/login/BUILD.bazel -------------------------------------------------------------------------------- /apps/code-of-conduct/app/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/app/login/login.component.html -------------------------------------------------------------------------------- /apps/code-of-conduct/app/login/login.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/app/login/login.component.scss -------------------------------------------------------------------------------- /apps/code-of-conduct/app/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/app/login/login.component.ts -------------------------------------------------------------------------------- /apps/code-of-conduct/app/main/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/app/main/BUILD.bazel -------------------------------------------------------------------------------- /apps/code-of-conduct/app/main/main.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/app/main/main.component.html -------------------------------------------------------------------------------- /apps/code-of-conduct/app/main/main.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/app/main/main.component.scss -------------------------------------------------------------------------------- /apps/code-of-conduct/app/main/main.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/app/main/main.component.ts -------------------------------------------------------------------------------- /apps/code-of-conduct/app/user-table/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/app/user-table/BUILD.bazel -------------------------------------------------------------------------------- /apps/code-of-conduct/app/user-table/user-table.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/app/user-table/user-table.component.html -------------------------------------------------------------------------------- /apps/code-of-conduct/app/user-table/user-table.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/app/user-table/user-table.component.scss -------------------------------------------------------------------------------- /apps/code-of-conduct/app/user-table/user-table.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/app/user-table/user-table.component.ts -------------------------------------------------------------------------------- /apps/code-of-conduct/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/environment.ts -------------------------------------------------------------------------------- /apps/code-of-conduct/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/favicon.ico -------------------------------------------------------------------------------- /apps/code-of-conduct/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/index.html -------------------------------------------------------------------------------- /apps/code-of-conduct/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/main.ts -------------------------------------------------------------------------------- /apps/code-of-conduct/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/package.json -------------------------------------------------------------------------------- /apps/code-of-conduct/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | 3 | Disallow: / -------------------------------------------------------------------------------- /apps/code-of-conduct/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/code-of-conduct/styles.scss -------------------------------------------------------------------------------- /apps/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/firebase.json -------------------------------------------------------------------------------- /apps/firestore.indexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/firestore.indexes.json -------------------------------------------------------------------------------- /apps/firestore.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/firestore.rules -------------------------------------------------------------------------------- /apps/functions/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/functions/BUILD.bazel -------------------------------------------------------------------------------- /apps/functions/code-of-conduct/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/functions/code-of-conduct/BUILD.bazel -------------------------------------------------------------------------------- /apps/functions/code-of-conduct/blockUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/functions/code-of-conduct/blockUser.ts -------------------------------------------------------------------------------- /apps/functions/code-of-conduct/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/functions/code-of-conduct/index.ts -------------------------------------------------------------------------------- /apps/functions/code-of-conduct/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/functions/code-of-conduct/shared.ts -------------------------------------------------------------------------------- /apps/functions/code-of-conduct/syncUsers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/functions/code-of-conduct/syncUsers.ts -------------------------------------------------------------------------------- /apps/functions/code-of-conduct/unblockUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/functions/code-of-conduct/unblockUser.ts -------------------------------------------------------------------------------- /apps/functions/dns-redirecting/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/functions/dns-redirecting/BUILD.bazel -------------------------------------------------------------------------------- /apps/functions/dns-redirecting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/functions/dns-redirecting/index.ts -------------------------------------------------------------------------------- /apps/functions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/functions/index.ts -------------------------------------------------------------------------------- /apps/functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/functions/package.json -------------------------------------------------------------------------------- /apps/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/apps/tsconfig.json -------------------------------------------------------------------------------- /bazel/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/BUILD.bazel -------------------------------------------------------------------------------- /bazel/api-golden/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/api-golden/BUILD.bazel -------------------------------------------------------------------------------- /bazel/api-golden/api_golden_test.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/api-golden/api_golden_test.bzl -------------------------------------------------------------------------------- /bazel/api-golden/api_golden_test_npm_package.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/api-golden/api_golden_test_npm_package.bzl -------------------------------------------------------------------------------- /bazel/api-golden/find_entry_points.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/api-golden/find_entry_points.ts -------------------------------------------------------------------------------- /bazel/api-golden/index.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/api-golden/index.bzl -------------------------------------------------------------------------------- /bazel/api-golden/index_npm_packages.cts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/api-golden/index_npm_packages.cts -------------------------------------------------------------------------------- /bazel/api-golden/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "commonjs" 3 | } 4 | -------------------------------------------------------------------------------- /bazel/api-golden/path-normalize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/api-golden/path-normalize.ts -------------------------------------------------------------------------------- /bazel/api-golden/test/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/api-golden/test/BUILD.bazel -------------------------------------------------------------------------------- /bazel/api-golden/test/fixtures/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/api-golden/test/fixtures/BUILD.bazel -------------------------------------------------------------------------------- /bazel/api-golden/test/fixtures/pkg_no_exports_field/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const fromTopLevel: boolean; 2 | -------------------------------------------------------------------------------- /bazel/api-golden/test/fixtures/pkg_no_exports_field/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/api-golden/test/fixtures/pkg_no_exports_field/package.json -------------------------------------------------------------------------------- /bazel/api-golden/test/fixtures/pkg_no_exports_field/testing/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/api-golden/test/fixtures/pkg_no_exports_field/testing/index.d.ts -------------------------------------------------------------------------------- /bazel/api-golden/test/fixtures/pkg_no_exports_field/testing/nested.d.ts: -------------------------------------------------------------------------------- 1 | export declare const nestedFile = true; 2 | -------------------------------------------------------------------------------- /bazel/api-golden/test/fixtures/pkg_no_exports_field/testing/nested/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "types": "../nested.d.ts" 3 | } 4 | -------------------------------------------------------------------------------- /bazel/api-golden/test/fixtures/pkg_no_exports_field/testing/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "types": "./index.d.ts" 3 | } 4 | -------------------------------------------------------------------------------- /bazel/api-golden/test/fixtures/test_fixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/api-golden/test/fixtures/test_fixture.ts -------------------------------------------------------------------------------- /bazel/api-golden/test/fixtures/test_package/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const fromTopLevel: boolean; 2 | -------------------------------------------------------------------------------- /bazel/api-golden/test/fixtures/test_package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/api-golden/test/fixtures/test_package/package.json -------------------------------------------------------------------------------- /bazel/api-golden/test/fixtures/test_package/shared_chunk.d.ts: -------------------------------------------------------------------------------- 1 | export const sharedChunk = true; 2 | -------------------------------------------------------------------------------- /bazel/api-golden/test/fixtures/test_package/testing/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/api-golden/test/fixtures/test_package/testing/index.d.ts -------------------------------------------------------------------------------- /bazel/api-golden/test/fixtures/test_package/testing/nested.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/api-golden/test/fixtures/test_package/testing/nested.d.ts -------------------------------------------------------------------------------- /bazel/api-golden/test/fixtures/transitive_target/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/api-golden/test/fixtures/transitive_target/BUILD.bazel -------------------------------------------------------------------------------- /bazel/api-golden/test/fixtures/transitive_target/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/api-golden/test/fixtures/transitive_target/index.ts -------------------------------------------------------------------------------- /bazel/api-golden/test/goldens/explicit_file/index.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/api-golden/test/goldens/explicit_file/index.api.md -------------------------------------------------------------------------------- /bazel/api-golden/test/goldens/pkg_no_exports_field/index.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/api-golden/test/goldens/pkg_no_exports_field/index.api.md -------------------------------------------------------------------------------- /bazel/api-golden/test/goldens/pkg_no_exports_field/testing/index.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/api-golden/test/goldens/pkg_no_exports_field/testing/index.api.md -------------------------------------------------------------------------------- /bazel/api-golden/test/goldens/pkg_no_exports_field/testing/nested/index.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/api-golden/test/goldens/pkg_no_exports_field/testing/nested/index.api.md -------------------------------------------------------------------------------- /bazel/api-golden/test/goldens/test_package/index.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/api-golden/test/goldens/test_package/index.api.md -------------------------------------------------------------------------------- /bazel/api-golden/test/goldens/test_package/testing/index.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/api-golden/test/goldens/test_package/testing/index.api.md -------------------------------------------------------------------------------- /bazel/api-golden/test/goldens/test_package/testing/nested/index.api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/api-golden/test/goldens/test_package/testing/nested/index.api.md -------------------------------------------------------------------------------- /bazel/api-golden/test_api_report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/api-golden/test_api_report.ts -------------------------------------------------------------------------------- /bazel/constraints/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/constraints/BUILD.bazel -------------------------------------------------------------------------------- /bazel/expand_template.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/expand_template.bzl -------------------------------------------------------------------------------- /bazel/extract_types.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/extract_types.bzl -------------------------------------------------------------------------------- /bazel/filter_outputs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/filter_outputs.bzl -------------------------------------------------------------------------------- /bazel/git-toolchain/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/git-toolchain/BUILD.bazel -------------------------------------------------------------------------------- /bazel/git-toolchain/alias.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/git-toolchain/alias.bzl -------------------------------------------------------------------------------- /bazel/git-toolchain/toolchain.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/git-toolchain/toolchain.bzl -------------------------------------------------------------------------------- /bazel/http-server/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/http-server/BUILD.bazel -------------------------------------------------------------------------------- /bazel/http-server/ibazel.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/http-server/ibazel.mts -------------------------------------------------------------------------------- /bazel/http-server/index.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/http-server/index.bzl -------------------------------------------------------------------------------- /bazel/http-server/launcher_template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/http-server/launcher_template.sh -------------------------------------------------------------------------------- /bazel/http-server/main.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/http-server/main.mts -------------------------------------------------------------------------------- /bazel/http-server/server.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/http-server/server.mts -------------------------------------------------------------------------------- /bazel/http-server/test/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/http-server/test/BUILD.bazel -------------------------------------------------------------------------------- /bazel/http-server/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/http-server/test/index.html -------------------------------------------------------------------------------- /bazel/http-server/test/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/http-server/test/main.ts -------------------------------------------------------------------------------- /bazel/http-server/test/server-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/http-server/test/server-test.ts -------------------------------------------------------------------------------- /bazel/http-server/test/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/http-server/test/tsconfig.app.json -------------------------------------------------------------------------------- /bazel/integration/BUILD.bazel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bazel/integration/index.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/index.bzl -------------------------------------------------------------------------------- /bazel/integration/test_runner/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/test_runner/BUILD.bazel -------------------------------------------------------------------------------- /bazel/integration/test_runner/bazel.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/test_runner/bazel.mts -------------------------------------------------------------------------------- /bazel/integration/test_runner/constants.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/test_runner/constants.mts -------------------------------------------------------------------------------- /bazel/integration/test_runner/debug.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/test_runner/debug.mts -------------------------------------------------------------------------------- /bazel/integration/test_runner/file_system_utils.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/test_runner/file_system_utils.mts -------------------------------------------------------------------------------- /bazel/integration/test_runner/main.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/test_runner/main.mts -------------------------------------------------------------------------------- /bazel/integration/test_runner/package_json.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/test_runner/package_json.mts -------------------------------------------------------------------------------- /bazel/integration/test_runner/process_utils.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/test_runner/process_utils.mts -------------------------------------------------------------------------------- /bazel/integration/test_runner/runner.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/test_runner/runner.mts -------------------------------------------------------------------------------- /bazel/integration/test_runner/size-tracking.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/test_runner/size-tracking.mts -------------------------------------------------------------------------------- /bazel/integration/tests/angular-cli/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/angular-cli/.editorconfig -------------------------------------------------------------------------------- /bazel/integration/tests/angular-cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/angular-cli/.gitignore -------------------------------------------------------------------------------- /bazel/integration/tests/angular-cli/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/angular-cli/BUILD.bazel -------------------------------------------------------------------------------- /bazel/integration/tests/angular-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/angular-cli/README.md -------------------------------------------------------------------------------- /bazel/integration/tests/angular-cli/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/angular-cli/angular.json -------------------------------------------------------------------------------- /bazel/integration/tests/angular-cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/angular-cli/package.json -------------------------------------------------------------------------------- /bazel/integration/tests/angular-cli/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/angular-cli/pnpm-lock.yaml -------------------------------------------------------------------------------- /bazel/integration/tests/angular-cli/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/angular-cli/pnpm-workspace.yaml -------------------------------------------------------------------------------- /bazel/integration/tests/angular-cli/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bazel/integration/tests/angular-cli/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/angular-cli/src/app/app.component.html -------------------------------------------------------------------------------- /bazel/integration/tests/angular-cli/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/angular-cli/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /bazel/integration/tests/angular-cli/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/angular-cli/src/app/app.component.ts -------------------------------------------------------------------------------- /bazel/integration/tests/angular-cli/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/angular-cli/src/app/app.module.ts -------------------------------------------------------------------------------- /bazel/integration/tests/angular-cli/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bazel/integration/tests/angular-cli/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /bazel/integration/tests/angular-cli/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/angular-cli/src/environments/environment.ts -------------------------------------------------------------------------------- /bazel/integration/tests/angular-cli/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/angular-cli/src/favicon.ico -------------------------------------------------------------------------------- /bazel/integration/tests/angular-cli/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/angular-cli/src/index.html -------------------------------------------------------------------------------- /bazel/integration/tests/angular-cli/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/angular-cli/src/main.ts -------------------------------------------------------------------------------- /bazel/integration/tests/angular-cli/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/angular-cli/src/styles.css -------------------------------------------------------------------------------- /bazel/integration/tests/angular-cli/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/angular-cli/tsconfig.app.json -------------------------------------------------------------------------------- /bazel/integration/tests/angular-cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/angular-cli/tsconfig.json -------------------------------------------------------------------------------- /bazel/integration/tests/angular-cli/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/angular-cli/tsconfig.spec.json -------------------------------------------------------------------------------- /bazel/integration/tests/custom_env_variables/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/custom_env_variables/BUILD.bazel -------------------------------------------------------------------------------- /bazel/integration/tests/custom_env_variables/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/custom_env_variables/test.js -------------------------------------------------------------------------------- /bazel/integration/tests/external_command_script/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/external_command_script/BUILD.bazel -------------------------------------------------------------------------------- /bazel/integration/tests/external_command_script/external_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/external_command_script/external_script.sh -------------------------------------------------------------------------------- /bazel/integration/tests/nested_bazel_workspaces/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/nested_bazel_workspaces/BUILD.bazel -------------------------------------------------------------------------------- /bazel/integration/tests/nested_bazel_workspaces/basic/.bazelrc: -------------------------------------------------------------------------------- 1 | build --symlink_prefix=/ 2 | -------------------------------------------------------------------------------- /bazel/integration/tests/nested_bazel_workspaces/basic/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/nested_bazel_workspaces/basic/BUILD.bazel -------------------------------------------------------------------------------- /bazel/integration/tests/nested_bazel_workspaces/basic/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/nested_bazel_workspaces/basic/WORKSPACE -------------------------------------------------------------------------------- /bazel/integration/tests/nested_bazel_workspaces/basic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/nested_bazel_workspaces/basic/package.json -------------------------------------------------------------------------------- /bazel/integration/tests/nested_bazel_workspaces/basic/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/nested_bazel_workspaces/basic/pnpm-lock.yaml -------------------------------------------------------------------------------- /bazel/integration/tests/nested_bazel_workspaces/basic/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/nested_bazel_workspaces/basic/pnpm-workspace.yaml -------------------------------------------------------------------------------- /bazel/integration/tests/nested_bazel_workspaces/basic/some_test.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "Passes" 4 | exit 0 5 | -------------------------------------------------------------------------------- /bazel/integration/tests/package_mappings/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/package_mappings/BUILD.bazel -------------------------------------------------------------------------------- /bazel/integration/tests/package_mappings/fake_pkg_srcs/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/package_mappings/fake_pkg_srcs/BUILD.bazel -------------------------------------------------------------------------------- /bazel/integration/tests/package_mappings/fake_pkg_srcs/index.mjs: -------------------------------------------------------------------------------- 1 | export default 'This is a fake package!'; 2 | -------------------------------------------------------------------------------- /bazel/integration/tests/package_mappings/fake_pkg_srcs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/package_mappings/fake_pkg_srcs/package.json -------------------------------------------------------------------------------- /bazel/integration/tests/package_mappings/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/package_mappings/package.json -------------------------------------------------------------------------------- /bazel/integration/tests/package_mappings/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/package_mappings/pnpm-lock.yaml -------------------------------------------------------------------------------- /bazel/integration/tests/package_mappings/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/package_mappings/pnpm-workspace.yaml -------------------------------------------------------------------------------- /bazel/integration/tests/package_mappings/test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/package_mappings/test.mjs -------------------------------------------------------------------------------- /bazel/integration/tests/playwright_chromium/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/playwright_chromium/BUILD.bazel -------------------------------------------------------------------------------- /bazel/integration/tests/playwright_chromium/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/playwright_chromium/package.json -------------------------------------------------------------------------------- /bazel/integration/tests/playwright_chromium/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/playwright_chromium/playwright.config.ts -------------------------------------------------------------------------------- /bazel/integration/tests/playwright_chromium/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/playwright_chromium/pnpm-lock.yaml -------------------------------------------------------------------------------- /bazel/integration/tests/playwright_chromium/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/playwright_chromium/pnpm-workspace.yaml -------------------------------------------------------------------------------- /bazel/integration/tests/playwright_chromium/test_page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/playwright_chromium/test_page/index.html -------------------------------------------------------------------------------- /bazel/integration/tests/playwright_chromium/tests/first.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/playwright_chromium/tests/first.spec.ts -------------------------------------------------------------------------------- /bazel/integration/tests/playwright_chromium/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/integration/tests/playwright_chromium/tsconfig.json -------------------------------------------------------------------------------- /bazel/jasmine/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/jasmine/BUILD.bazel -------------------------------------------------------------------------------- /bazel/jasmine/jasmine.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/jasmine/jasmine.bzl -------------------------------------------------------------------------------- /bazel/jasmine/stack-traces.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/jasmine/stack-traces.mjs -------------------------------------------------------------------------------- /bazel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/package.json -------------------------------------------------------------------------------- /bazel/private/BUILD.bazel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bazel/private/manifest_path.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/private/manifest_path.bzl -------------------------------------------------------------------------------- /bazel/private/node_loader/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/private/node_loader/BUILD.bazel -------------------------------------------------------------------------------- /bazel/private/node_loader/hooks.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/private/node_loader/hooks.mjs -------------------------------------------------------------------------------- /bazel/private/node_loader/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/private/node_loader/index.mjs -------------------------------------------------------------------------------- /bazel/private/path_relative_to_label.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/private/path_relative_to_label.bzl -------------------------------------------------------------------------------- /bazel/remote-execution/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/remote-execution/BUILD.bazel -------------------------------------------------------------------------------- /bazel/remote-execution/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/remote-execution/Dockerfile -------------------------------------------------------------------------------- /bazel/remote-execution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/remote-execution/README.md -------------------------------------------------------------------------------- /bazel/remote-execution/index.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/remote-execution/index.bzl -------------------------------------------------------------------------------- /bazel/spec-bundling/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/spec-bundling/BUILD.bazel -------------------------------------------------------------------------------- /bazel/spec-bundling/index.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/spec-bundling/index.bzl -------------------------------------------------------------------------------- /bazel/spec-bundling/spec-entrypoint.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/spec-bundling/spec-entrypoint.bzl -------------------------------------------------------------------------------- /bazel/spec-bundling/test/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/spec-bundling/test/BUILD.bazel -------------------------------------------------------------------------------- /bazel/spec-bundling/test/async-await.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/spec-bundling/test/async-await.spec.ts -------------------------------------------------------------------------------- /bazel/spec-bundling/test/core_apf_esm_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/spec-bundling/test/core_apf_esm_test.ts -------------------------------------------------------------------------------- /bazel/spec-bundling/test/core_invalid_linker_decl.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/spec-bundling/test/core_invalid_linker_decl.spec.ts -------------------------------------------------------------------------------- /bazel/spec-bundling/test/ensure-transitive-loaded.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/spec-bundling/test/ensure-transitive-loaded.spec.ts -------------------------------------------------------------------------------- /bazel/spec-bundling/test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/spec-bundling/test/package.json -------------------------------------------------------------------------------- /bazel/spec-bundling/test/should_be_picked_up.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/spec-bundling/test/should_be_picked_up.spec.ts -------------------------------------------------------------------------------- /bazel/spec-bundling/test/some_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/spec-bundling/test/some_spec.js -------------------------------------------------------------------------------- /bazel/spec-bundling/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/spec-bundling/test/tsconfig.json -------------------------------------------------------------------------------- /bazel/test/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/test/BUILD.bazel -------------------------------------------------------------------------------- /bazel/test/extract_types_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/test/extract_types_test.js -------------------------------------------------------------------------------- /bazel/test/fixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/test/fixture.ts -------------------------------------------------------------------------------- /bazel/test/fixture.txt: -------------------------------------------------------------------------------- 1 | a simple text file -------------------------------------------------------------------------------- /bazel/test/transitive_file.ts: -------------------------------------------------------------------------------- 1 | export const transitiveFile = true; 2 | -------------------------------------------------------------------------------- /bazel/ts_project/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/ts_project/BUILD.bazel -------------------------------------------------------------------------------- /bazel/ts_project/index.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/ts_project/index.bzl -------------------------------------------------------------------------------- /bazel/ts_project/strict_deps/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/ts_project/strict_deps/BUILD.bazel -------------------------------------------------------------------------------- /bazel/ts_project/strict_deps/diagnostic.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/ts_project/strict_deps/diagnostic.mts -------------------------------------------------------------------------------- /bazel/ts_project/strict_deps/index.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/ts_project/strict_deps/index.bzl -------------------------------------------------------------------------------- /bazel/ts_project/strict_deps/index.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/ts_project/strict_deps/index.mts -------------------------------------------------------------------------------- /bazel/ts_project/strict_deps/manifest.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/ts_project/strict_deps/manifest.mts -------------------------------------------------------------------------------- /bazel/ts_project/strict_deps/test/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/ts_project/strict_deps/test/BUILD.bazel -------------------------------------------------------------------------------- /bazel/ts_project/strict_deps/test/depth/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/ts_project/strict_deps/test/depth/BUILD.bazel -------------------------------------------------------------------------------- /bazel/ts_project/strict_deps/test/depth/file.ts: -------------------------------------------------------------------------------- 1 | export const depthValue = 42; 2 | -------------------------------------------------------------------------------- /bazel/ts_project/strict_deps/test/depth/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/ts_project/strict_deps/test/depth/tsconfig.json -------------------------------------------------------------------------------- /bazel/ts_project/strict_deps/test/import_from_depth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/ts_project/strict_deps/test/import_from_depth.ts -------------------------------------------------------------------------------- /bazel/ts_project/strict_deps/test/import_from_mts_cts_extensions/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/ts_project/strict_deps/test/import_from_mts_cts_extensions/BUILD.bazel -------------------------------------------------------------------------------- /bazel/ts_project/strict_deps/test/import_from_mts_cts_extensions/common_extension.cts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/ts_project/strict_deps/test/import_from_mts_cts_extensions/common_extension.cts -------------------------------------------------------------------------------- /bazel/ts_project/strict_deps/test/import_from_mts_cts_extensions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/ts_project/strict_deps/test/import_from_mts_cts_extensions/index.ts -------------------------------------------------------------------------------- /bazel/ts_project/strict_deps/test/import_from_mts_cts_extensions/module_extension.mts: -------------------------------------------------------------------------------- 1 | export const moduleValue = 42; 2 | -------------------------------------------------------------------------------- /bazel/ts_project/strict_deps/test/import_from_mts_cts_extensions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/ts_project/strict_deps/test/import_from_mts_cts_extensions/tsconfig.json -------------------------------------------------------------------------------- /bazel/ts_project/strict_deps/test/import_node_module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/ts_project/strict_deps/test/import_node_module.ts -------------------------------------------------------------------------------- /bazel/ts_project/strict_deps/test/import_npm_module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/ts_project/strict_deps/test/import_npm_module.ts -------------------------------------------------------------------------------- /bazel/ts_project/strict_deps/test/import_npm_module/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/ts_project/strict_deps/test/import_npm_module/BUILD.bazel -------------------------------------------------------------------------------- /bazel/ts_project/strict_deps/test/import_npm_module/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/ts_project/strict_deps/test/import_npm_module/index.ts -------------------------------------------------------------------------------- /bazel/ts_project/strict_deps/test/import_npm_module/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/ts_project/strict_deps/test/import_npm_module/tsconfig.json -------------------------------------------------------------------------------- /bazel/ts_project/strict_deps/test/sibling_import_from_depth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/ts_project/strict_deps/test/sibling_import_from_depth.ts -------------------------------------------------------------------------------- /bazel/ts_project/strict_deps/test/transitive_from_depth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/ts_project/strict_deps/test/transitive_from_depth.ts -------------------------------------------------------------------------------- /bazel/ts_project/strict_deps/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/ts_project/strict_deps/test/tsconfig.json -------------------------------------------------------------------------------- /bazel/ts_project/strict_deps/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/ts_project/strict_deps/tsconfig.json -------------------------------------------------------------------------------- /bazel/ts_project/strict_deps/tsconfig.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/ts_project/strict_deps/tsconfig.mts -------------------------------------------------------------------------------- /bazel/ts_project/strict_deps/visitor.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/ts_project/strict_deps/visitor.mts -------------------------------------------------------------------------------- /bazel/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/tsconfig.json -------------------------------------------------------------------------------- /bazel/validation/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/validation/BUILD.bazel -------------------------------------------------------------------------------- /bazel/validation/defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/validation/defs.bzl -------------------------------------------------------------------------------- /bazel/validation/verify-typescript.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/bazel/validation/verify-typescript.mjs -------------------------------------------------------------------------------- /github-actions/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/BUILD.bazel -------------------------------------------------------------------------------- /github-actions/bazel/configure-remote/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/bazel/configure-remote/BUILD.bazel -------------------------------------------------------------------------------- /github-actions/bazel/configure-remote/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/bazel/configure-remote/action.yml -------------------------------------------------------------------------------- /github-actions/bazel/configure-remote/configure-remote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/bazel/configure-remote/configure-remote.js -------------------------------------------------------------------------------- /github-actions/bazel/configure-remote/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/bazel/configure-remote/constants.ts -------------------------------------------------------------------------------- /github-actions/bazel/configure-remote/encrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/bazel/configure-remote/encrypt.ts -------------------------------------------------------------------------------- /github-actions/bazel/configure-remote/gcp_token.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/bazel/configure-remote/gcp_token.data -------------------------------------------------------------------------------- /github-actions/bazel/configure-remote/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/bazel/configure-remote/index.ts -------------------------------------------------------------------------------- /github-actions/bazel/configure-remote/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/bazel/configure-remote/package.json -------------------------------------------------------------------------------- /github-actions/bazel/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/bazel/setup/action.yml -------------------------------------------------------------------------------- /github-actions/bazel/setup/setup-ci-bazelrc.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/bazel/setup/setup-ci-bazelrc.mjs -------------------------------------------------------------------------------- /github-actions/branch-manager/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/branch-manager/BUILD.bazel -------------------------------------------------------------------------------- /github-actions/branch-manager/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/branch-manager/action.yml -------------------------------------------------------------------------------- /github-actions/branch-manager/lib/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/branch-manager/lib/main.ts -------------------------------------------------------------------------------- /github-actions/branch-manager/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/branch-manager/main.js -------------------------------------------------------------------------------- /github-actions/branch-manager/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/branch-manager/package.json -------------------------------------------------------------------------------- /github-actions/browserstack/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/browserstack/BUILD.bazel -------------------------------------------------------------------------------- /github-actions/browserstack/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/browserstack/action.yml -------------------------------------------------------------------------------- /github-actions/browserstack/browserstack_token.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/browserstack/browserstack_token.data -------------------------------------------------------------------------------- /github-actions/browserstack/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/browserstack/constants.ts -------------------------------------------------------------------------------- /github-actions/browserstack/encrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/browserstack/encrypt.ts -------------------------------------------------------------------------------- /github-actions/browserstack/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/browserstack/index.ts -------------------------------------------------------------------------------- /github-actions/browserstack/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/browserstack/package.json -------------------------------------------------------------------------------- /github-actions/browserstack/set-browserstack-env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/browserstack/set-browserstack-env.js -------------------------------------------------------------------------------- /github-actions/feature-request/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/feature-request/BUILD.bazel -------------------------------------------------------------------------------- /github-actions/feature-request/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/feature-request/README.md -------------------------------------------------------------------------------- /github-actions/feature-request/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/feature-request/action.yml -------------------------------------------------------------------------------- /github-actions/feature-request/lib/action.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/feature-request/lib/action.spec.ts -------------------------------------------------------------------------------- /github-actions/feature-request/lib/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/feature-request/lib/action.ts -------------------------------------------------------------------------------- /github-actions/feature-request/lib/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/feature-request/lib/api.ts -------------------------------------------------------------------------------- /github-actions/feature-request/lib/get-input.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/feature-request/lib/get-input.spec.ts -------------------------------------------------------------------------------- /github-actions/feature-request/lib/get-input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/feature-request/lib/get-input.ts -------------------------------------------------------------------------------- /github-actions/feature-request/lib/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/feature-request/lib/log.ts -------------------------------------------------------------------------------- /github-actions/feature-request/lib/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/feature-request/lib/main.ts -------------------------------------------------------------------------------- /github-actions/feature-request/lib/octokit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/feature-request/lib/octokit.ts -------------------------------------------------------------------------------- /github-actions/feature-request/lib/testing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/feature-request/lib/testing.ts -------------------------------------------------------------------------------- /github-actions/feature-request/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/feature-request/main.js -------------------------------------------------------------------------------- /github-actions/feature-request/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/feature-request/package.json -------------------------------------------------------------------------------- /github-actions/google-internal-tests/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/google-internal-tests/BUILD.bazel -------------------------------------------------------------------------------- /github-actions/google-internal-tests/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/google-internal-tests/action.yml -------------------------------------------------------------------------------- /github-actions/google-internal-tests/lib/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/google-internal-tests/lib/main.ts -------------------------------------------------------------------------------- /github-actions/google-internal-tests/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/google-internal-tests/main.js -------------------------------------------------------------------------------- /github-actions/google-internal-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/google-internal-tests/package.json -------------------------------------------------------------------------------- /github-actions/linting/licenses/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/linting/licenses/action.yml -------------------------------------------------------------------------------- /github-actions/linting/licenses/dependency-review-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/linting/licenses/dependency-review-config.yml -------------------------------------------------------------------------------- /github-actions/npm/checkout-and-setup-node/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/npm/checkout-and-setup-node/action.yml -------------------------------------------------------------------------------- /github-actions/org-file-sync/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/org-file-sync/BUILD.bazel -------------------------------------------------------------------------------- /github-actions/org-file-sync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/org-file-sync/README.md -------------------------------------------------------------------------------- /github-actions/org-file-sync/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/org-file-sync/action.yml -------------------------------------------------------------------------------- /github-actions/org-file-sync/lib/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/org-file-sync/lib/main.ts -------------------------------------------------------------------------------- /github-actions/org-file-sync/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/org-file-sync/main.js -------------------------------------------------------------------------------- /github-actions/org-file-sync/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/org-file-sync/package.json -------------------------------------------------------------------------------- /github-actions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/package.json -------------------------------------------------------------------------------- /github-actions/post-approval-changes/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/post-approval-changes/BUILD.bazel -------------------------------------------------------------------------------- /github-actions/post-approval-changes/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/post-approval-changes/action.yml -------------------------------------------------------------------------------- /github-actions/post-approval-changes/lib/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/post-approval-changes/lib/main.ts -------------------------------------------------------------------------------- /github-actions/post-approval-changes/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/post-approval-changes/main.js -------------------------------------------------------------------------------- /github-actions/post-approval-changes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/post-approval-changes/package.json -------------------------------------------------------------------------------- /github-actions/previews/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/previews/BUILD.bazel -------------------------------------------------------------------------------- /github-actions/previews/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/previews/constants.ts -------------------------------------------------------------------------------- /github-actions/previews/pack-and-upload-artifact/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/previews/pack-and-upload-artifact/BUILD.bazel -------------------------------------------------------------------------------- /github-actions/previews/pack-and-upload-artifact/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/previews/pack-and-upload-artifact/action.yml -------------------------------------------------------------------------------- /github-actions/previews/pack-and-upload-artifact/inject-artifact-metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/previews/pack-and-upload-artifact/inject-artifact-metadata.js -------------------------------------------------------------------------------- /github-actions/previews/pack-and-upload-artifact/lib/inject-artifact-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/previews/pack-and-upload-artifact/lib/inject-artifact-metadata.ts -------------------------------------------------------------------------------- /github-actions/previews/pack-and-upload-artifact/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/previews/pack-and-upload-artifact/package.json -------------------------------------------------------------------------------- /github-actions/previews/upload-artifacts-to-firebase/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/previews/upload-artifacts-to-firebase/BUILD.bazel -------------------------------------------------------------------------------- /github-actions/previews/upload-artifacts-to-firebase/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/previews/upload-artifacts-to-firebase/action.yml -------------------------------------------------------------------------------- /github-actions/previews/upload-artifacts-to-firebase/extract-artifact-metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/previews/upload-artifacts-to-firebase/extract-artifact-metadata.js -------------------------------------------------------------------------------- /github-actions/previews/upload-artifacts-to-firebase/fetch-workflow-artifact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/previews/upload-artifacts-to-firebase/fetch-workflow-artifact.js -------------------------------------------------------------------------------- /github-actions/previews/upload-artifacts-to-firebase/lib/extract-artifact-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/previews/upload-artifacts-to-firebase/lib/extract-artifact-metadata.ts -------------------------------------------------------------------------------- /github-actions/previews/upload-artifacts-to-firebase/lib/fetch-workflow-artifact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/previews/upload-artifacts-to-firebase/lib/fetch-workflow-artifact.ts -------------------------------------------------------------------------------- /github-actions/previews/upload-artifacts-to-firebase/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/previews/upload-artifacts-to-firebase/package.json -------------------------------------------------------------------------------- /github-actions/pull-request-labeling/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/pull-request-labeling/BUILD.bazel -------------------------------------------------------------------------------- /github-actions/pull-request-labeling/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/pull-request-labeling/action.yml -------------------------------------------------------------------------------- /github-actions/pull-request-labeling/lib/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/pull-request-labeling/lib/main.ts -------------------------------------------------------------------------------- /github-actions/pull-request-labeling/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/pull-request-labeling/main.js -------------------------------------------------------------------------------- /github-actions/pull-request-labeling/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/pull-request-labeling/package.json -------------------------------------------------------------------------------- /github-actions/saucelabs/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/saucelabs/BUILD.bazel -------------------------------------------------------------------------------- /github-actions/saucelabs/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/saucelabs/action.yml -------------------------------------------------------------------------------- /github-actions/saucelabs/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/saucelabs/constants.ts -------------------------------------------------------------------------------- /github-actions/saucelabs/encrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/saucelabs/encrypt.ts -------------------------------------------------------------------------------- /github-actions/saucelabs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/saucelabs/index.ts -------------------------------------------------------------------------------- /github-actions/saucelabs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/saucelabs/package.json -------------------------------------------------------------------------------- /github-actions/saucelabs/saucelabs_token.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/saucelabs/saucelabs_token.data -------------------------------------------------------------------------------- /github-actions/saucelabs/set-saucelabs-env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/saucelabs/set-saucelabs-env.js -------------------------------------------------------------------------------- /github-actions/setup-wsl/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/setup-wsl/action.yml -------------------------------------------------------------------------------- /github-actions/tsconfig-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/tsconfig-test.json -------------------------------------------------------------------------------- /github-actions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/tsconfig.json -------------------------------------------------------------------------------- /github-actions/unified-status-check/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/unified-status-check/BUILD.bazel -------------------------------------------------------------------------------- /github-actions/unified-status-check/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/unified-status-check/action.yml -------------------------------------------------------------------------------- /github-actions/unified-status-check/lib/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/unified-status-check/lib/main.ts -------------------------------------------------------------------------------- /github-actions/unified-status-check/lib/pull-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/unified-status-check/lib/pull-request.ts -------------------------------------------------------------------------------- /github-actions/unified-status-check/lib/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/unified-status-check/lib/validator.ts -------------------------------------------------------------------------------- /github-actions/unified-status-check/lib/validators/draft-mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/unified-status-check/lib/validators/draft-mode.ts -------------------------------------------------------------------------------- /github-actions/unified-status-check/lib/validators/labels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/unified-status-check/lib/validators/labels.ts -------------------------------------------------------------------------------- /github-actions/unified-status-check/lib/validators/statuses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/unified-status-check/lib/validators/statuses.ts -------------------------------------------------------------------------------- /github-actions/unified-status-check/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/unified-status-check/main.js -------------------------------------------------------------------------------- /github-actions/unified-status-check/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/unified-status-check/package.json -------------------------------------------------------------------------------- /github-actions/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/github-actions/utils.ts -------------------------------------------------------------------------------- /lint-rules/stylelint/no-concrete-rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/lint-rules/stylelint/no-concrete-rules.ts -------------------------------------------------------------------------------- /lint-rules/stylelint/no-import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/lint-rules/stylelint/no-import.ts -------------------------------------------------------------------------------- /lint-rules/stylelint/no-unused-import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/lint-rules/stylelint/no-unused-import.ts -------------------------------------------------------------------------------- /lint-rules/stylelint/selector-no-deep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/lint-rules/stylelint/selector-no-deep.ts -------------------------------------------------------------------------------- /lint-rules/stylelint/single-line-comment-only.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/lint-rules/stylelint/single-line-comment-only.ts -------------------------------------------------------------------------------- /lint-rules/stylelint/tsx-loader-rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/lint-rules/stylelint/tsx-loader-rule.js -------------------------------------------------------------------------------- /lint-rules/tslint/noImplicitOverrideAbstractRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/lint-rules/tslint/noImplicitOverrideAbstractRule.ts -------------------------------------------------------------------------------- /lint-rules/tslint/tsxLoaderRule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/lint-rules/tslint/tsxLoaderRule.js -------------------------------------------------------------------------------- /lint-rules/tslint/validateImportForEsmCjsInteropRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/lint-rules/tslint/validateImportForEsmCjsInteropRule.ts -------------------------------------------------------------------------------- /ng-dev/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/ai/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/ai/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/ai/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/ai/cli.ts -------------------------------------------------------------------------------- /ng-dev/ai/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/ai/consts.ts -------------------------------------------------------------------------------- /ng-dev/ai/fix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/ai/fix.ts -------------------------------------------------------------------------------- /ng-dev/ai/migrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/ai/migrate.ts -------------------------------------------------------------------------------- /ng-dev/auth/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/auth/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/auth/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/auth/cli.ts -------------------------------------------------------------------------------- /ng-dev/auth/login/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/auth/login/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/auth/login/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/auth/login/cli.ts -------------------------------------------------------------------------------- /ng-dev/auth/logout/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/auth/logout/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/auth/logout/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/auth/logout/cli.ts -------------------------------------------------------------------------------- /ng-dev/caretaker/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/caretaker/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/caretaker/check/base.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/caretaker/check/base.spec.ts -------------------------------------------------------------------------------- /ng-dev/caretaker/check/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/caretaker/check/base.ts -------------------------------------------------------------------------------- /ng-dev/caretaker/check/check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/caretaker/check/check.ts -------------------------------------------------------------------------------- /ng-dev/caretaker/check/ci.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/caretaker/check/ci.spec.ts -------------------------------------------------------------------------------- /ng-dev/caretaker/check/ci.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/caretaker/check/ci.ts -------------------------------------------------------------------------------- /ng-dev/caretaker/check/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/caretaker/check/cli.ts -------------------------------------------------------------------------------- /ng-dev/caretaker/check/g3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/caretaker/check/g3.spec.ts -------------------------------------------------------------------------------- /ng-dev/caretaker/check/g3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/caretaker/check/g3.ts -------------------------------------------------------------------------------- /ng-dev/caretaker/check/github.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/caretaker/check/github.spec.ts -------------------------------------------------------------------------------- /ng-dev/caretaker/check/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/caretaker/check/github.ts -------------------------------------------------------------------------------- /ng-dev/caretaker/check/services.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/caretaker/check/services.spec.ts -------------------------------------------------------------------------------- /ng-dev/caretaker/check/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/caretaker/check/services.ts -------------------------------------------------------------------------------- /ng-dev/caretaker/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/caretaker/cli.ts -------------------------------------------------------------------------------- /ng-dev/caretaker/handoff/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/caretaker/handoff/cli.ts -------------------------------------------------------------------------------- /ng-dev/caretaker/handoff/update-github-team.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/caretaker/handoff/update-github-team.ts -------------------------------------------------------------------------------- /ng-dev/caretaker/handoff/verify-merge-mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/caretaker/handoff/verify-merge-mode.ts -------------------------------------------------------------------------------- /ng-dev/caretaker/merge-mode/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/caretaker/merge-mode/cli.ts -------------------------------------------------------------------------------- /ng-dev/caretaker/merge-mode/release.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/caretaker/merge-mode/release.ts -------------------------------------------------------------------------------- /ng-dev/caretaker/merge-mode/reset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/caretaker/merge-mode/reset.ts -------------------------------------------------------------------------------- /ng-dev/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/cli.ts -------------------------------------------------------------------------------- /ng-dev/commit-message/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/commit-message/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/commit-message/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/commit-message/cli.ts -------------------------------------------------------------------------------- /ng-dev/commit-message/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/commit-message/config.ts -------------------------------------------------------------------------------- /ng-dev/commit-message/parse.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/commit-message/parse.spec.ts -------------------------------------------------------------------------------- /ng-dev/commit-message/parse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/commit-message/parse.ts -------------------------------------------------------------------------------- /ng-dev/commit-message/restore-commit-message/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/commit-message/restore-commit-message/cli.ts -------------------------------------------------------------------------------- /ng-dev/commit-message/restore-commit-message/commit-message-draft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/commit-message/restore-commit-message/commit-message-draft.ts -------------------------------------------------------------------------------- /ng-dev/commit-message/restore-commit-message/commit-message-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/commit-message/restore-commit-message/commit-message-source.ts -------------------------------------------------------------------------------- /ng-dev/commit-message/restore-commit-message/restore-commit-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/commit-message/restore-commit-message/restore-commit-message.ts -------------------------------------------------------------------------------- /ng-dev/commit-message/test-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/commit-message/test-util.ts -------------------------------------------------------------------------------- /ng-dev/commit-message/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/commit-message/utils.ts -------------------------------------------------------------------------------- /ng-dev/commit-message/validate-file/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/commit-message/validate-file/cli.ts -------------------------------------------------------------------------------- /ng-dev/commit-message/validate-file/validate-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/commit-message/validate-file/validate-file.ts -------------------------------------------------------------------------------- /ng-dev/commit-message/validate-range/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/commit-message/validate-range/cli.ts -------------------------------------------------------------------------------- /ng-dev/commit-message/validate-range/validate-range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/commit-message/validate-range/validate-range.ts -------------------------------------------------------------------------------- /ng-dev/commit-message/validate.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/commit-message/validate.spec.ts -------------------------------------------------------------------------------- /ng-dev/commit-message/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/commit-message/validate.ts -------------------------------------------------------------------------------- /ng-dev/config/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/config/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/config/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/config/cli.ts -------------------------------------------------------------------------------- /ng-dev/config/validate/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/config/validate/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/config/validate/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/config/validate/cli.ts -------------------------------------------------------------------------------- /ng-dev/config/validate/portability.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/config/validate/portability.ts -------------------------------------------------------------------------------- /ng-dev/config/validate/validity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/config/validate/validity.ts -------------------------------------------------------------------------------- /ng-dev/format/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/format/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/format/all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/format/all.ts -------------------------------------------------------------------------------- /ng-dev/format/changed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/format/changed.ts -------------------------------------------------------------------------------- /ng-dev/format/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/format/cli.ts -------------------------------------------------------------------------------- /ng-dev/format/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/format/config.ts -------------------------------------------------------------------------------- /ng-dev/format/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/format/files.ts -------------------------------------------------------------------------------- /ng-dev/format/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/format/format.ts -------------------------------------------------------------------------------- /ng-dev/format/formatters/base-formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/format/formatters/base-formatter.ts -------------------------------------------------------------------------------- /ng-dev/format/formatters/buildifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/format/formatters/buildifier.ts -------------------------------------------------------------------------------- /ng-dev/format/formatters/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/format/formatters/index.ts -------------------------------------------------------------------------------- /ng-dev/format/formatters/prettier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/format/formatters/prettier.ts -------------------------------------------------------------------------------- /ng-dev/format/run-commands-parallel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/format/run-commands-parallel.ts -------------------------------------------------------------------------------- /ng-dev/format/staged.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/format/staged.ts -------------------------------------------------------------------------------- /ng-dev/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/index.ts -------------------------------------------------------------------------------- /ng-dev/misc/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/misc/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/misc/build-and-link/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/misc/build-and-link/cli.ts -------------------------------------------------------------------------------- /ng-dev/misc/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/misc/cli.ts -------------------------------------------------------------------------------- /ng-dev/misc/generate-nodejs-toolchain/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/misc/generate-nodejs-toolchain/cli.ts -------------------------------------------------------------------------------- /ng-dev/misc/generated-files/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/misc/generated-files/cli.ts -------------------------------------------------------------------------------- /ng-dev/misc/generated-files/update-generated-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/misc/generated-files/update-generated-files.ts -------------------------------------------------------------------------------- /ng-dev/ngbot/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/ngbot/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/ngbot/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/ngbot/cli.ts -------------------------------------------------------------------------------- /ng-dev/ngbot/verify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/ngbot/verify.ts -------------------------------------------------------------------------------- /ng-dev/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/package.json -------------------------------------------------------------------------------- /ng-dev/perf/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/perf/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/perf/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/perf/cli.ts -------------------------------------------------------------------------------- /ng-dev/perf/workflow/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/perf/workflow/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/perf/workflow/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/perf/workflow/cli.ts -------------------------------------------------------------------------------- /ng-dev/perf/workflow/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/perf/workflow/database.ts -------------------------------------------------------------------------------- /ng-dev/perf/workflow/loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/perf/workflow/loader.ts -------------------------------------------------------------------------------- /ng-dev/perf/workflow/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/perf/workflow/workflow.ts -------------------------------------------------------------------------------- /ng-dev/pr/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/pr/check-target-branches/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/check-target-branches/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/pr/check-target-branches/check-target-branches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/check-target-branches/check-target-branches.ts -------------------------------------------------------------------------------- /ng-dev/pr/check-target-branches/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/check-target-branches/cli.ts -------------------------------------------------------------------------------- /ng-dev/pr/checkout/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/checkout/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/pr/checkout/checkout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/checkout/checkout.ts -------------------------------------------------------------------------------- /ng-dev/pr/checkout/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/checkout/cli.ts -------------------------------------------------------------------------------- /ng-dev/pr/checkout/commit-message-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/checkout/commit-message-filter.ts -------------------------------------------------------------------------------- /ng-dev/pr/checkout/takeover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/checkout/takeover.ts -------------------------------------------------------------------------------- /ng-dev/pr/checkout/target.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/checkout/target.ts -------------------------------------------------------------------------------- /ng-dev/pr/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/cli.ts -------------------------------------------------------------------------------- /ng-dev/pr/common/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/pr/common/checkout-pr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/checkout-pr.ts -------------------------------------------------------------------------------- /ng-dev/pr/common/fetch-pull-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/fetch-pull-request.ts -------------------------------------------------------------------------------- /ng-dev/pr/common/labels/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/labels/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/pr/common/labels/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/labels/action.ts -------------------------------------------------------------------------------- /ng-dev/pr/common/labels/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/labels/base.ts -------------------------------------------------------------------------------- /ng-dev/pr/common/labels/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/labels/feature.ts -------------------------------------------------------------------------------- /ng-dev/pr/common/labels/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/labels/index.ts -------------------------------------------------------------------------------- /ng-dev/pr/common/labels/managed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/labels/managed.ts -------------------------------------------------------------------------------- /ng-dev/pr/common/labels/merge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/labels/merge.ts -------------------------------------------------------------------------------- /ng-dev/pr/common/labels/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/labels/misc.ts -------------------------------------------------------------------------------- /ng-dev/pr/common/labels/needs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/labels/needs.ts -------------------------------------------------------------------------------- /ng-dev/pr/common/labels/priority.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/labels/priority.ts -------------------------------------------------------------------------------- /ng-dev/pr/common/labels/requires.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/labels/requires.ts -------------------------------------------------------------------------------- /ng-dev/pr/common/labels/target.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/labels/target.ts -------------------------------------------------------------------------------- /ng-dev/pr/common/labels/validate-labels.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/labels/validate-labels.spec.ts -------------------------------------------------------------------------------- /ng-dev/pr/common/targeting/labels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/targeting/labels.ts -------------------------------------------------------------------------------- /ng-dev/pr/common/targeting/lts-branch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/targeting/lts-branch.ts -------------------------------------------------------------------------------- /ng-dev/pr/common/targeting/target-label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/targeting/target-label.ts -------------------------------------------------------------------------------- /ng-dev/pr/common/test/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/test/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/pr/common/test/common.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/test/common.spec.ts -------------------------------------------------------------------------------- /ng-dev/pr/common/validation/assert-allowed-target-label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/validation/assert-allowed-target-label.ts -------------------------------------------------------------------------------- /ng-dev/pr/common/validation/assert-breaking-change-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/validation/assert-breaking-change-info.ts -------------------------------------------------------------------------------- /ng-dev/pr/common/validation/assert-completed-reviews.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/validation/assert-completed-reviews.ts -------------------------------------------------------------------------------- /ng-dev/pr/common/validation/assert-enforce-tested.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/validation/assert-enforce-tested.ts -------------------------------------------------------------------------------- /ng-dev/pr/common/validation/assert-enforced-statuses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/validation/assert-enforced-statuses.ts -------------------------------------------------------------------------------- /ng-dev/pr/common/validation/assert-isolated-separate-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/validation/assert-isolated-separate-files.ts -------------------------------------------------------------------------------- /ng-dev/pr/common/validation/assert-merge-ready.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/validation/assert-merge-ready.ts -------------------------------------------------------------------------------- /ng-dev/pr/common/validation/assert-minimum-reviews.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/validation/assert-minimum-reviews.ts -------------------------------------------------------------------------------- /ng-dev/pr/common/validation/assert-passing-ci.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/validation/assert-passing-ci.ts -------------------------------------------------------------------------------- /ng-dev/pr/common/validation/assert-pending.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/validation/assert-pending.ts -------------------------------------------------------------------------------- /ng-dev/pr/common/validation/assert-signed-cla.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/validation/assert-signed-cla.ts -------------------------------------------------------------------------------- /ng-dev/pr/common/validation/validate-pull-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/validation/validate-pull-request.ts -------------------------------------------------------------------------------- /ng-dev/pr/common/validation/validation-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/validation/validation-config.ts -------------------------------------------------------------------------------- /ng-dev/pr/common/validation/validation-failure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/common/validation/validation-failure.ts -------------------------------------------------------------------------------- /ng-dev/pr/config/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/config/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/pr/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/config/index.ts -------------------------------------------------------------------------------- /ng-dev/pr/discover-new-conflicts/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/discover-new-conflicts/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/pr/discover-new-conflicts/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/discover-new-conflicts/cli.ts -------------------------------------------------------------------------------- /ng-dev/pr/discover-new-conflicts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/discover-new-conflicts/index.ts -------------------------------------------------------------------------------- /ng-dev/pr/merge/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/merge/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/pr/merge/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/merge/cli.ts -------------------------------------------------------------------------------- /ng-dev/pr/merge/failures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/merge/failures.ts -------------------------------------------------------------------------------- /ng-dev/pr/merge/integration.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/merge/integration.spec.ts -------------------------------------------------------------------------------- /ng-dev/pr/merge/merge-pull-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/merge/merge-pull-request.ts -------------------------------------------------------------------------------- /ng-dev/pr/merge/merge-tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/merge/merge-tool.ts -------------------------------------------------------------------------------- /ng-dev/pr/merge/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/merge/messages.ts -------------------------------------------------------------------------------- /ng-dev/pr/merge/pull-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/merge/pull-request.ts -------------------------------------------------------------------------------- /ng-dev/pr/merge/strategies/api-merge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/merge/strategies/api-merge.ts -------------------------------------------------------------------------------- /ng-dev/pr/merge/strategies/autosquash-merge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/merge/strategies/autosquash-merge.ts -------------------------------------------------------------------------------- /ng-dev/pr/merge/strategies/commit-message-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/merge/strategies/commit-message-filter.ts -------------------------------------------------------------------------------- /ng-dev/pr/merge/strategies/strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/merge/strategies/strategy.ts -------------------------------------------------------------------------------- /ng-dev/pr/rebase/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/rebase/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/pr/rebase/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/rebase/cli.ts -------------------------------------------------------------------------------- /ng-dev/pr/rebase/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pr/rebase/index.ts -------------------------------------------------------------------------------- /ng-dev/pullapprove/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pullapprove/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/pullapprove/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pullapprove/cli.ts -------------------------------------------------------------------------------- /ng-dev/pullapprove/condition_errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pullapprove/condition_errors.ts -------------------------------------------------------------------------------- /ng-dev/pullapprove/condition_evaluator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pullapprove/condition_evaluator.ts -------------------------------------------------------------------------------- /ng-dev/pullapprove/group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pullapprove/group.ts -------------------------------------------------------------------------------- /ng-dev/pullapprove/logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pullapprove/logging.ts -------------------------------------------------------------------------------- /ng-dev/pullapprove/parse-yaml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pullapprove/parse-yaml.ts -------------------------------------------------------------------------------- /ng-dev/pullapprove/pullapprove_arrays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pullapprove/pullapprove_arrays.ts -------------------------------------------------------------------------------- /ng-dev/pullapprove/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pullapprove/utils.ts -------------------------------------------------------------------------------- /ng-dev/pullapprove/verify.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pullapprove/verify.spec.ts -------------------------------------------------------------------------------- /ng-dev/pullapprove/verify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/pullapprove/verify.ts -------------------------------------------------------------------------------- /ng-dev/release/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/release/build/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/build/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/release/build/build-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/build/build-worker.ts -------------------------------------------------------------------------------- /ng-dev/release/build/build.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/build/build.spec.ts -------------------------------------------------------------------------------- /ng-dev/release/build/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/build/cli.ts -------------------------------------------------------------------------------- /ng-dev/release/build/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/build/index.ts -------------------------------------------------------------------------------- /ng-dev/release/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/cli.ts -------------------------------------------------------------------------------- /ng-dev/release/config/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/config/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/release/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/config/index.ts -------------------------------------------------------------------------------- /ng-dev/release/info/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/info/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/release/info/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/info/cli.ts -------------------------------------------------------------------------------- /ng-dev/release/notes/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/notes/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/release/notes/changelog.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/notes/changelog.spec.ts -------------------------------------------------------------------------------- /ng-dev/release/notes/changelog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/notes/changelog.ts -------------------------------------------------------------------------------- /ng-dev/release/notes/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/notes/cli.ts -------------------------------------------------------------------------------- /ng-dev/release/notes/commits/get-commits-in-range.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/notes/commits/get-commits-in-range.png -------------------------------------------------------------------------------- /ng-dev/release/notes/commits/get-commits-in-range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/notes/commits/get-commits-in-range.ts -------------------------------------------------------------------------------- /ng-dev/release/notes/commits/unique-commit-id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/notes/commits/unique-commit-id.ts -------------------------------------------------------------------------------- /ng-dev/release/notes/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/notes/context.ts -------------------------------------------------------------------------------- /ng-dev/release/notes/release-notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/notes/release-notes.ts -------------------------------------------------------------------------------- /ng-dev/release/notes/templates/changelog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/notes/templates/changelog.ts -------------------------------------------------------------------------------- /ng-dev/release/notes/templates/github-release.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/notes/templates/github-release.ts -------------------------------------------------------------------------------- /ng-dev/release/npm-dist-tag/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/npm-dist-tag/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/release/npm-dist-tag/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/npm-dist-tag/cli.ts -------------------------------------------------------------------------------- /ng-dev/release/npm-dist-tag/delete/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/npm-dist-tag/delete/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/release/npm-dist-tag/delete/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/npm-dist-tag/delete/cli.ts -------------------------------------------------------------------------------- /ng-dev/release/npm-dist-tag/delete/delete-dist-tag.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/npm-dist-tag/delete/delete-dist-tag.spec.ts -------------------------------------------------------------------------------- /ng-dev/release/npm-dist-tag/set/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/npm-dist-tag/set/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/release/npm-dist-tag/set/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/npm-dist-tag/set/cli.ts -------------------------------------------------------------------------------- /ng-dev/release/npm-dist-tag/set/set-dist-tag.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/npm-dist-tag/set/set-dist-tag.spec.ts -------------------------------------------------------------------------------- /ng-dev/release/precheck/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/precheck/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/release/precheck/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/precheck/cli.ts -------------------------------------------------------------------------------- /ng-dev/release/precheck/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/precheck/index.ts -------------------------------------------------------------------------------- /ng-dev/release/precheck/precheck.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/precheck/precheck.spec.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/release/publish/actions-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/actions-error.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/actions.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/actions/configure-next-as-major.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/actions/configure-next-as-major.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/actions/cut-lts-patch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/actions/cut-lts-patch.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/actions/cut-new-patch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/actions/cut-new-patch.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/actions/cut-npm-next-prerelease.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/actions/cut-npm-next-prerelease.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/actions/cut-npm-next-release-candidate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/actions/cut-npm-next-release-candidate.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/actions/cut-stable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/actions/cut-stable.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/actions/exceptional-minor/cut-exceptional-minor-prerelease.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/actions/exceptional-minor/cut-exceptional-minor-prerelease.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/actions/exceptional-minor/cut-exceptional-minor-release-candidate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/actions/exceptional-minor/cut-exceptional-minor-release-candidate.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/actions/exceptional-minor/prepare-exceptional-minor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/actions/exceptional-minor/prepare-exceptional-minor.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/actions/index.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/actions/move-next-into-feature-freeze.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/actions/move-next-into-feature-freeze.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/actions/move-next-into-release-candidate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/actions/move-next-into-release-candidate.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/actions/renovate-config-updates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/actions/renovate-config-updates.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/actions/shared/branch-off-next-branch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/actions/shared/branch-off-next-branch.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/actions/shared/cut-prerelease.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/actions/shared/cut-prerelease.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/actions/special/cut-lts-minor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/actions/special/cut-lts-minor.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/actions/tag-recent-major-as-latest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/actions/tag-recent-major-as-latest.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/built-package-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/built-package-info.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/cli.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/commit-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/commit-message.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/constants.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/directory-hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/directory-hash.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/external-commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/external-commands.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/index.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/pnpm-versioning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/pnpm-versioning.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/prompt-merge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/prompt-merge.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/pull-request-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/pull-request-state.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/test/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/test/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/release/publish/test/branch-off-next-branch-testing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/test/branch-off-next-branch-testing.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/test/common.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/test/common.spec.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/test/configure-next-as-major.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/test/configure-next-as-major.spec.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/test/cut-lts-patch.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/test/cut-lts-patch.spec.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/test/cut-new-patch.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/test/cut-new-patch.spec.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/test/cut-npm-next-prerelease.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/test/cut-npm-next-prerelease.spec.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/test/cut-npm-next-release-candidate.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/test/cut-npm-next-release-candidate.spec.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/test/cut-stable.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/test/cut-stable.spec.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/test/delegate-test-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/test/delegate-test-action.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/test/exceptional-minor/cut-exceptional-minor-prerelease.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/test/exceptional-minor/cut-exceptional-minor-prerelease.spec.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/test/exceptional-minor/cut-exceptional-minor-release-candidate.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/test/exceptional-minor/cut-exceptional-minor-release-candidate.spec.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/test/exceptional-minor/prepare-exceptional-minor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/test/exceptional-minor/prepare-exceptional-minor.spec.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/test/move-next-into-feature-freeze.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/test/move-next-into-feature-freeze.spec.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/test/move-next-into-release-candidate.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/test/move-next-into-release-candidate.spec.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/test/output-checks.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/test/output-checks.spec.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/test/release-notes/context.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/test/release-notes/context.spec.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/test/release-notes/generation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/test/release-notes/generation.spec.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/test/tag-recent-major-as-latest.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/test/tag-recent-major-as-latest.spec.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/test/test-utils/action-mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/test/test-utils/action-mocks.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/test/test-utils/staging-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/test/test-utils/staging-test.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/test/test-utils/test-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/test/test-utils/test-action.ts -------------------------------------------------------------------------------- /ng-dev/release/publish/test/test-utils/test-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/publish/test/test-utils/test-utils.ts -------------------------------------------------------------------------------- /ng-dev/release/set-dist-tag/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/set-dist-tag/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/release/set-dist-tag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/set-dist-tag/README.md -------------------------------------------------------------------------------- /ng-dev/release/set-dist-tag/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/set-dist-tag/cli.ts -------------------------------------------------------------------------------- /ng-dev/release/stamping/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/stamping/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/release/stamping/_private_main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/stamping/_private_main.ts -------------------------------------------------------------------------------- /ng-dev/release/stamping/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/stamping/cli.ts -------------------------------------------------------------------------------- /ng-dev/release/stamping/env-stamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/stamping/env-stamp.ts -------------------------------------------------------------------------------- /ng-dev/release/versioning/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/versioning/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/release/versioning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/versioning/README.md -------------------------------------------------------------------------------- /ng-dev/release/versioning/active-release-trains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/versioning/active-release-trains.ts -------------------------------------------------------------------------------- /ng-dev/release/versioning/experimental-versions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/versioning/experimental-versions.ts -------------------------------------------------------------------------------- /ng-dev/release/versioning/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/versioning/index.ts -------------------------------------------------------------------------------- /ng-dev/release/versioning/long-term-support.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/versioning/long-term-support.ts -------------------------------------------------------------------------------- /ng-dev/release/versioning/npm-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/versioning/npm-command.ts -------------------------------------------------------------------------------- /ng-dev/release/versioning/npm-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/versioning/npm-registry.ts -------------------------------------------------------------------------------- /ng-dev/release/versioning/prerelease-version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/versioning/prerelease-version.ts -------------------------------------------------------------------------------- /ng-dev/release/versioning/print-active-trains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/versioning/print-active-trains.ts -------------------------------------------------------------------------------- /ng-dev/release/versioning/release-trains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/versioning/release-trains.ts -------------------------------------------------------------------------------- /ng-dev/release/versioning/test/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/versioning/test/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/release/versioning/test/active-release-trains.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/versioning/test/active-release-trains.spec.ts -------------------------------------------------------------------------------- /ng-dev/release/versioning/version-branches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/versioning/version-branches.ts -------------------------------------------------------------------------------- /ng-dev/release/versioning/version-tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/release/versioning/version-tags.ts -------------------------------------------------------------------------------- /ng-dev/ts-circular-dependencies/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/ts-circular-dependencies/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/ts-circular-dependencies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/ts-circular-dependencies/README.md -------------------------------------------------------------------------------- /ng-dev/ts-circular-dependencies/analyzer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/ts-circular-dependencies/analyzer.ts -------------------------------------------------------------------------------- /ng-dev/ts-circular-dependencies/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/ts-circular-dependencies/config.ts -------------------------------------------------------------------------------- /ng-dev/ts-circular-dependencies/example-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/ts-circular-dependencies/example-graph.png -------------------------------------------------------------------------------- /ng-dev/ts-circular-dependencies/file_system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/ts-circular-dependencies/file_system.ts -------------------------------------------------------------------------------- /ng-dev/ts-circular-dependencies/golden.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/ts-circular-dependencies/golden.ts -------------------------------------------------------------------------------- /ng-dev/ts-circular-dependencies/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/ts-circular-dependencies/index.ts -------------------------------------------------------------------------------- /ng-dev/ts-circular-dependencies/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/ts-circular-dependencies/parser.ts -------------------------------------------------------------------------------- /ng-dev/tsconfig-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/tsconfig-test.json -------------------------------------------------------------------------------- /ng-dev/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/tsconfig.json -------------------------------------------------------------------------------- /ng-dev/utils/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/utils/bazel-bin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/bazel-bin.ts -------------------------------------------------------------------------------- /ng-dev/utils/child-process.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/child-process.ts -------------------------------------------------------------------------------- /ng-dev/utils/config-assertions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/config-assertions.ts -------------------------------------------------------------------------------- /ng-dev/utils/config-cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/config-cache.ts -------------------------------------------------------------------------------- /ng-dev/utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/config.ts -------------------------------------------------------------------------------- /ng-dev/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/constants.ts -------------------------------------------------------------------------------- /ng-dev/utils/dry-run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/dry-run.ts -------------------------------------------------------------------------------- /ng-dev/utils/g3-sync-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/g3-sync-config.ts -------------------------------------------------------------------------------- /ng-dev/utils/g3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/g3.ts -------------------------------------------------------------------------------- /ng-dev/utils/git/authenticated-git-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/git/authenticated-git-client.ts -------------------------------------------------------------------------------- /ng-dev/utils/git/git-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/git/git-client.ts -------------------------------------------------------------------------------- /ng-dev/utils/git/github-macros.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/git/github-macros.ts -------------------------------------------------------------------------------- /ng-dev/utils/git/github-urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/git/github-urls.ts -------------------------------------------------------------------------------- /ng-dev/utils/git/github-yargs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/git/github-yargs.ts -------------------------------------------------------------------------------- /ng-dev/utils/git/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/git/github.ts -------------------------------------------------------------------------------- /ng-dev/utils/git/graphql-queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/git/graphql-queries.ts -------------------------------------------------------------------------------- /ng-dev/utils/git/octokit-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/git/octokit-types.ts -------------------------------------------------------------------------------- /ng-dev/utils/git/repository-merge-mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/git/repository-merge-mode.ts -------------------------------------------------------------------------------- /ng-dev/utils/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/github.ts -------------------------------------------------------------------------------- /ng-dev/utils/locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/locale.ts -------------------------------------------------------------------------------- /ng-dev/utils/logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/logging.ts -------------------------------------------------------------------------------- /ng-dev/utils/nodejs-errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/nodejs-errors.ts -------------------------------------------------------------------------------- /ng-dev/utils/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/prompt.ts -------------------------------------------------------------------------------- /ng-dev/utils/read-stdin-until-closed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/read-stdin-until-closed.ts -------------------------------------------------------------------------------- /ng-dev/utils/repo-directory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/repo-directory.ts -------------------------------------------------------------------------------- /ng-dev/utils/resolve-yarn-bin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/resolve-yarn-bin.ts -------------------------------------------------------------------------------- /ng-dev/utils/semver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/semver.ts -------------------------------------------------------------------------------- /ng-dev/utils/spinner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/spinner.ts -------------------------------------------------------------------------------- /ng-dev/utils/test/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/test/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/utils/test/g3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/test/g3.spec.ts -------------------------------------------------------------------------------- /ng-dev/utils/test/resolve-yarn-bin.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/test/resolve-yarn-bin.spec.ts -------------------------------------------------------------------------------- /ng-dev/utils/testing/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/testing/BUILD.bazel -------------------------------------------------------------------------------- /ng-dev/utils/testing/bazel-env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/testing/bazel-env.ts -------------------------------------------------------------------------------- /ng-dev/utils/testing/dedent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/testing/dedent.ts -------------------------------------------------------------------------------- /ng-dev/utils/testing/git-client-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/testing/git-client-mock.ts -------------------------------------------------------------------------------- /ng-dev/utils/testing/github-api-testing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/testing/github-api-testing.ts -------------------------------------------------------------------------------- /ng-dev/utils/testing/github-interception.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/testing/github-interception.ts -------------------------------------------------------------------------------- /ng-dev/utils/testing/github-pagination-header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/testing/github-pagination-header.ts -------------------------------------------------------------------------------- /ng-dev/utils/testing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/testing/index.ts -------------------------------------------------------------------------------- /ng-dev/utils/testing/sandbox-git-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/testing/sandbox-git-client.ts -------------------------------------------------------------------------------- /ng-dev/utils/testing/sandbox-testing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/testing/sandbox-testing.ts -------------------------------------------------------------------------------- /ng-dev/utils/testing/semver-matchers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/testing/semver-matchers.ts -------------------------------------------------------------------------------- /ng-dev/utils/testing/virtual-git-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/testing/virtual-git-client.ts -------------------------------------------------------------------------------- /ng-dev/utils/testing/virtual-git-matchers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/testing/virtual-git-matchers.ts -------------------------------------------------------------------------------- /ng-dev/utils/version-check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/version-check.ts -------------------------------------------------------------------------------- /ng-dev/utils/yargs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/ng-dev/utils/yargs.ts -------------------------------------------------------------------------------- /package.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/package.bzl -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /renovate-presets/default.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/renovate-presets/default.json5 -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/renovate.json -------------------------------------------------------------------------------- /tools/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/tools/BUILD.bazel -------------------------------------------------------------------------------- /tools/bazel-patches/build_bazel_rules_nodejs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/tools/bazel-patches/build_bazel_rules_nodejs.patch -------------------------------------------------------------------------------- /tools/defaults.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/tools/defaults.bzl -------------------------------------------------------------------------------- /tools/local-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/tools/local-dev.sh -------------------------------------------------------------------------------- /tools/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /tools/publish_to_github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/tools/publish_to_github.sh -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/dev-infra/HEAD/tslint.json --------------------------------------------------------------------------------