@angular/compiler-cli 14.2.11 → 14.3.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.
@@ -896,7 +896,7 @@ var ProgramBasedEntryPointFinder = class extends TracingEntryPointFinder {
896
896
  };
897
897
 
898
898
  // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/build_marker.mjs
899
- var NGCC_VERSION = "14.2.11";
899
+ var NGCC_VERSION = "14.3.0";
900
900
  function needsCleaning(packageJson) {
901
901
  return Object.values(packageJson.__processed_by_ivy_ngcc__ || {}).some((value) => value !== NGCC_VERSION);
902
902
  }
@@ -827,7 +827,7 @@ var declarationFunctions = [
827
827
  ];
828
828
  function createLinkerMap(environment, sourceUrl, code) {
829
829
  const linkers = /* @__PURE__ */ new Map();
830
- const LATEST_VERSION_RANGE = getRange("<=", "14.2.11");
830
+ const LATEST_VERSION_RANGE = getRange("<=", "14.3.0");
831
831
  linkers.set(\u0275\u0275ngDeclareDirective, [
832
832
  { range: LATEST_VERSION_RANGE, linker: new PartialDirectiveLinkerVersion1(sourceUrl, code) }
833
833
  ]);
@@ -874,7 +874,7 @@ var PartialLinkerSelector = class {
874
874
  throw new Error(`Unknown partial declaration function ${functionName}.`);
875
875
  }
876
876
  const linkerRanges = this.linkers.get(functionName);
877
- if (version === "14.2.11") {
877
+ if (version === "14.3.0") {
878
878
  return linkerRanges[linkerRanges.length - 1].linker;
879
879
  }
880
880
  const declarationRange = getRange(">=", minVersion);
package/bundles/index.js CHANGED
@@ -69,7 +69,7 @@ import "./chunk-XYNRD7NE.js";
69
69
 
70
70
  // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/version.mjs
71
71
  import { Version } from "@angular/compiler";
72
- var VERSION = new Version("14.2.11");
72
+ var VERSION = new Version("14.3.0");
73
73
 
74
74
  // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/tsc_plugin.mjs
75
75
  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 = "14.2.11";
12
+ export declare const NGCC_VERSION = "14.3.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": "14.2.11",
3
+ "version": "14.3.0",
4
4
  "description": "Angular - the compiler CLI for Node.js",
5
5
  "typings": "index.d.ts",
6
6
  "bin": {
@@ -65,7 +65,7 @@
65
65
  "yargs": "^17.2.1"
66
66
  },
67
67
  "peerDependencies": {
68
- "@angular/compiler": "14.2.11",
68
+ "@angular/compiler": "14.3.0",
69
69
  "typescript": ">=4.6.2 <4.9"
70
70
  },
71
71
  "repository": {