@angular/compiler-cli 13.2.0 → 14.0.0-next.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -887,7 +887,7 @@ var ProgramBasedEntryPointFinder = class extends TracingEntryPointFinder {
887
887
  };
888
888
 
889
889
  // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/build_marker.mjs
890
- var NGCC_VERSION = "13.2.0";
890
+ var NGCC_VERSION = "14.0.0-next.0";
891
891
  function needsCleaning(packageJson) {
892
892
  return Object.values(packageJson.__processed_by_ivy_ngcc__ || {}).some((value) => value !== NGCC_VERSION);
893
893
  }
@@ -785,7 +785,7 @@ var declarationFunctions = [
785
785
  ];
786
786
  function createLinkerMap(environment, sourceUrl, code) {
787
787
  const linkers = /* @__PURE__ */ new Map();
788
- const LATEST_VERSION_RANGE = getRange("<=", "13.2.0");
788
+ const LATEST_VERSION_RANGE = getRange("<=", "14.0.0-next.0");
789
789
  linkers.set(\u0275\u0275ngDeclareDirective, [
790
790
  { range: LATEST_VERSION_RANGE, linker: new PartialDirectiveLinkerVersion1(sourceUrl, code) }
791
791
  ]);
@@ -832,7 +832,7 @@ var PartialLinkerSelector = class {
832
832
  throw new Error(`Unknown partial declaration function ${functionName}.`);
833
833
  }
834
834
  const linkerRanges = this.linkers.get(functionName);
835
- if (version === "13.2.0") {
835
+ if (version === "14.0.0-next.0") {
836
836
  return linkerRanges[linkerRanges.length - 1].linker;
837
837
  }
838
838
  const declarationRange = getRange(">=", minVersion);
package/bundles/index.js CHANGED
@@ -71,7 +71,7 @@ import {
71
71
 
72
72
  // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/version.mjs
73
73
  import { Version } from "@angular/compiler";
74
- var VERSION = new Version("13.2.0");
74
+ var VERSION = new Version("14.0.0-next.0");
75
75
 
76
76
  // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/tsc_plugin.mjs
77
77
  var NgTscPlugin = class {
@@ -9,7 +9,7 @@
9
9
  import { AbsoluteFsPath } from '../../../src/ngtsc/file_system';
10
10
  import { PackageJsonUpdater } from '../writing/package_json_updater';
11
11
  import { EntryPointPackageJson, PackageJsonFormatProperties } from './entry_point';
12
- export declare const NGCC_VERSION = "13.2.0";
12
+ export declare const NGCC_VERSION = "14.0.0-next.0";
13
13
  /**
14
14
  * Returns true if there is a format in this entry-point that was compiled with an outdated version
15
15
  * of ngcc.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/compiler-cli",
3
- "version": "13.2.0",
3
+ "version": "14.0.0-next.0",
4
4
  "description": "Angular - the compiler CLI for Node.js",
5
5
  "typings": "index.d.ts",
6
6
  "bin": {
@@ -66,7 +66,7 @@
66
66
  "yargs": "^17.2.1"
67
67
  },
68
68
  "peerDependencies": {
69
- "@angular/compiler": "13.2.0",
69
+ "@angular/compiler": "14.0.0-next.0",
70
70
  "typescript": ">=4.4.2 <4.6"
71
71
  },
72
72
  "repository": {