mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-26 09:21:51 +08:00
* test: update ng-packagr builder tests to work on Windows * build: add ng packagr test large for ivy * test: fix web-worker test in ivy Previously, we were not testing web workers under Ivy as we were overriding tsconfig.app.json entirely without including enableIvy. When enabling Ivy we are getting warning of files that are part of the compilation which causing a warning to show and break the test. * build: update ng-packagr to `^5.4.0` * test: display ivy mode message once
26 lines
715 B
TypeScript
26 lines
715 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: '~8.2.0',
|
|
RxJs: '~6.4.0',
|
|
ZoneJs: '~0.9.1',
|
|
TypeScript: '~3.5.3',
|
|
TsLib: '^1.10.0',
|
|
|
|
// The versions below must be manually updated when making a new devkit release.
|
|
DevkitBuildAngular: '~0.803.0-next.1',
|
|
DevkitBuildNgPackagr: '~0.803.0-next.1',
|
|
DevkitBuildWebpack: '~0.803.0-next.1',
|
|
AngularPWA: '~0.803.0-next.1',
|
|
|
|
tsickle: '^0.36.0',
|
|
ngPackagr: '^5.4.0',
|
|
};
|