forked from angular/angular-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.bzl
More file actions
31 lines (28 loc) · 1.42 KB
/
constants.bzl
File metadata and controls
31 lines (28 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Engine versions to stamp in a release package.json
RELEASE_ENGINES_NODE = "^22.22.0 || >=24.13.1"
RELEASE_ENGINES_NPM = "^6.11.0 || ^7.5.6 || >=8.0.0"
RELEASE_ENGINES_YARN = ">= 1.13.0"
NG_PACKAGR_VERSION = "^22.0.0-next.0"
ANGULAR_FW_VERSION = "^22.0.0-next.0"
ANGULAR_FW_PEER_DEP = "^22.0.0-next.0"
NG_PACKAGR_PEER_DEP = "^22.0.0-next.0"
# Baseline widely-available date in `YYYY-MM-DD` format which defines Angular's
# browser support. This date serves as the source of truth for the Angular CLI's
# default browser set used to determine what downleveling is necessary.
#
# See: https://web.dev/baseline
BASELINE_DATE = "2025-10-20"
SNAPSHOT_REPOS = {
"@angular/cli": "angular/cli-builds",
"@angular/pwa": "angular/angular-pwa-builds",
"@angular/build": "angular/angular-build-builds",
"@angular/ssr": "angular/angular-ssr-builds",
"@angular-devkit/architect": "angular/angular-devkit-architect-builds",
"@angular-devkit/build-angular": "angular/angular-devkit-build-angular-builds",
"@angular-devkit/build-webpack": "angular/angular-devkit-build-webpack-builds",
"@angular-devkit/core": "angular/angular-devkit-core-builds",
"@angular-devkit/schematics": "angular/angular-devkit-schematics-builds",
"@angular-devkit/schematics-cli": "angular/angular-devkit-schematics-cli-builds",
"@ngtools/webpack": "angular/ngtools-webpack-builds",
"@schematics/angular": "angular/schematics-angular-builds",
}