mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-16 10:33:43 +08:00
TypeScript 3.9 requires tslib 2.0.0, with this change we; - Update tslib existing and new workspaces to use tslib 2.0.0 - Update new and existing libraries to use tslib 2.0.0 as a direct depedency. Tslib version is bound to the TypeScript version used to compile the library. Thus, we shouldn't list `tslib` as a `peerDependencies`. This is because, a user can install libraries which have been compiled with older versions of TypeScript and thus require multiple `tslib` versions to be installed. Closes: #17753 Reference: TOOL-1374
27 lines
885 B
TypeScript
27 lines
885 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google Inc. 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.io/license
|
|
*/
|
|
|
|
export const latestVersions = {
|
|
// These versions should be kept up to date with latest Angular peer dependencies.
|
|
Angular: '~10.0.0-next.8',
|
|
RxJs: '~6.5.4',
|
|
ZoneJs: '~0.10.2',
|
|
TypeScript: '~3.9.2',
|
|
TsLib: '^2.0.0',
|
|
|
|
// The versions below must be manually updated when making a new devkit release.
|
|
// For our e2e tests, these versions must match the latest tag present on the branch.
|
|
// During RC periods they will not match the latest RC until there's a new git tag, and
|
|
// should not be updated.
|
|
DevkitBuildAngular: '~0.1000.0-next.6',
|
|
DevkitBuildNgPackagr: '~0.1000.0-next.6',
|
|
DevkitBuildWebpack: '~0.1000.0-next.6',
|
|
|
|
ngPackagr: '^10.0.0-next.0',
|
|
};
|