/
githubmirror
/
angular-cli
Обзор
Документация
Войти
/
githubmirror
/
angular-cli
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/schematics/angular/utility/latest-versions.ts
28 строк
934 B
Alan Agius
build: replace hardcoded Angular and ng-packagr peer dependencies with Bazel stamping
16 янв 2025, 21:06
16 янв 2025, 21:06
31cbf5f
Код
Авторство
О чём код?
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ // We could have used TypeScripts' `resolveJsonModule` to make the `latestVersion` object typesafe, // but ts_library doesn't support JSON inputs. const dependencies = require('./latest-versions/package.json')['dependencies']; export const latestVersions: Record<string, string> & { Angular: string; DevkitBuildAngular: string; AngularBuild: string; AngularSSR: string; NgPackagr: string; } = { ...dependencies, // As Angular CLI works with same minor versions of Angular Framework, a tilde match for the current Angular: '0.0.0-ANGULAR-FW-VERSION', NgPackagr: '0.0.0-NG-PACKAGR-VERSION', DevkitBuildAngular: '^0.0.0-PLACEHOLDER', AngularBuild: '^0.0.0-PLACEHOLDER', AngularSSR: '^0.0.0-PLACEHOLDER', };