@angular/compiler-cli 14.0.0 → 14.0.1

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.
@@ -898,7 +898,7 @@ var ProgramBasedEntryPointFinder = class extends TracingEntryPointFinder {
898
898
  };
899
899
 
900
900
  // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/build_marker.mjs
901
- var NGCC_VERSION = "14.0.0";
901
+ var NGCC_VERSION = "14.0.1";
902
902
  function needsCleaning(packageJson) {
903
903
  return Object.values(packageJson.__processed_by_ivy_ngcc__ || {}).some((value) => value !== NGCC_VERSION);
904
904
  }
@@ -828,7 +828,7 @@ var declarationFunctions = [
828
828
  ];
829
829
  function createLinkerMap(environment, sourceUrl, code) {
830
830
  const linkers = /* @__PURE__ */ new Map();
831
- const LATEST_VERSION_RANGE = getRange("<=", "14.0.0");
831
+ const LATEST_VERSION_RANGE = getRange("<=", "14.0.1");
832
832
  linkers.set(\u0275\u0275ngDeclareDirective, [
833
833
  { range: LATEST_VERSION_RANGE, linker: new PartialDirectiveLinkerVersion1(sourceUrl, code) }
834
834
  ]);
@@ -875,7 +875,7 @@ var PartialLinkerSelector = class {
875
875
  throw new Error(`Unknown partial declaration function ${functionName}.`);
876
876
  }
877
877
  const linkerRanges = this.linkers.get(functionName);
878
- if (version === "14.0.0") {
878
+ if (version === "14.0.1") {
879
879
  return linkerRanges[linkerRanges.length - 1].linker;
880
880
  }
881
881
  const declarationRange = getRange(">=", minVersion);
package/bundles/index.js CHANGED
@@ -70,7 +70,7 @@ import {
70
70
 
71
71
  // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version.mjs
72
72
  import { Version } from "@angular/compiler";
73
- var VERSION = new Version("14.0.0");
73
+ var VERSION = new Version("14.0.1");
74
74
 
75
75
  // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/tsc_plugin.mjs
76
76
  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.0.0";
12
+ export declare const NGCC_VERSION = "14.0.1";
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.0.0",
3
+ "version": "14.0.1",
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.0.0",
68
+ "@angular/compiler": "14.0.1",
69
69
  "typescript": ">=4.6.2 <4.8"
70
70
  },
71
71
  "repository": {