latest-versions.js 837 B

12345678910111213141516171819202122
  1. "use strict";
  2. /**
  3. * @license
  4. * Copyright Google LLC All Rights Reserved.
  5. *
  6. * Use of this source code is governed by an MIT-style license that can be
  7. * found in the LICENSE file at https://angular.dev/license
  8. */
  9. Object.defineProperty(exports, "__esModule", { value: true });
  10. exports.latestVersions = void 0;
  11. // We could have used TypeScripts' `resolveJsonModule` to make the `latestVersion` object typesafe,
  12. // but ts_library doesn't support JSON inputs.
  13. const dependencies = require('./latest-versions/package.json')['dependencies'];
  14. exports.latestVersions = {
  15. ...dependencies,
  16. // As Angular CLI works with same minor versions of Angular Framework, a tilde match for the current
  17. Angular: '^19.2.0',
  18. NgPackagr: '^19.2.0',
  19. DevkitBuildAngular: '^19.2.8',
  20. AngularBuild: '^19.2.8',
  21. AngularSSR: '^19.2.8',
  22. };