@angular/compiler-cli 15.2.2 → 15.2.3

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.
@@ -848,7 +848,7 @@ var declarationFunctions = [
848
848
  ];
849
849
  function createLinkerMap(environment, sourceUrl, code) {
850
850
  const linkers = /* @__PURE__ */ new Map();
851
- const LATEST_VERSION_RANGE = getRange("<=", "15.2.2");
851
+ const LATEST_VERSION_RANGE = getRange("<=", "15.2.3");
852
852
  linkers.set(\u0275\u0275ngDeclareDirective, [
853
853
  { range: LATEST_VERSION_RANGE, linker: new PartialDirectiveLinkerVersion1(sourceUrl, code) }
854
854
  ]);
@@ -895,7 +895,7 @@ var PartialLinkerSelector = class {
895
895
  throw new Error(`Unknown partial declaration function ${functionName}.`);
896
896
  }
897
897
  const linkerRanges = this.linkers.get(functionName);
898
- if (version === "15.2.2") {
898
+ if (version === "15.2.3") {
899
899
  return linkerRanges[linkerRanges.length - 1].linker;
900
900
  }
901
901
  const declarationRange = getRange(">=", minVersion);
@@ -892,7 +892,7 @@ var ProgramBasedEntryPointFinder = class extends TracingEntryPointFinder {
892
892
  };
893
893
 
894
894
  // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/build_marker.mjs
895
- var NGCC_VERSION = "15.2.2";
895
+ var NGCC_VERSION = "15.2.3";
896
896
  function needsCleaning(packageJson) {
897
897
  return Object.values(packageJson.__processed_by_ivy_ngcc__ || {}).some((value) => value !== NGCC_VERSION);
898
898
  }
package/bundles/index.js CHANGED
@@ -69,7 +69,7 @@ import "./chunk-SRFZMXHZ.js";
69
69
 
70
70
  // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version.mjs
71
71
  import { Version } from "@angular/compiler";
72
- var VERSION = new Version("15.2.2");
72
+ var VERSION = new Version("15.2.3");
73
73
 
74
74
  // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/tsc_plugin.mjs
75
75
  var NgTscPlugin = class {
@@ -8,7 +8,7 @@
8
8
  import { AbsoluteFsPath } from '../../../src/ngtsc/file_system';
9
9
  import { PackageJsonUpdater } from '../writing/package_json_updater';
10
10
  import { EntryPointPackageJson, PackageJsonFormatProperties } from './entry_point';
11
- export declare const NGCC_VERSION = "15.2.2";
11
+ export declare const NGCC_VERSION = "15.2.3";
12
12
  /**
13
13
  * Returns true if there is a format in this entry-point that was compiled with an outdated version
14
14
  * of ngcc.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/compiler-cli",
3
- "version": "15.2.2",
3
+ "version": "15.2.3",
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": "15.2.2",
68
+ "@angular/compiler": "15.2.3",
69
69
  "typescript": ">=4.8.2 <5.0"
70
70
  },
71
71
  "repository": {