@angular/compiler-cli 15.0.0-rc.2 → 15.0.0-rc.4

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.
@@ -849,7 +849,7 @@ var declarationFunctions = [
849
849
  ];
850
850
  function createLinkerMap(environment, sourceUrl, code) {
851
851
  const linkers = /* @__PURE__ */ new Map();
852
- const LATEST_VERSION_RANGE = getRange("<=", "15.0.0-rc.2");
852
+ const LATEST_VERSION_RANGE = getRange("<=", "15.0.0-rc.4");
853
853
  linkers.set(\u0275\u0275ngDeclareDirective, [
854
854
  { range: LATEST_VERSION_RANGE, linker: new PartialDirectiveLinkerVersion1(sourceUrl, code) }
855
855
  ]);
@@ -896,7 +896,7 @@ var PartialLinkerSelector = class {
896
896
  throw new Error(`Unknown partial declaration function ${functionName}.`);
897
897
  }
898
898
  const linkerRanges = this.linkers.get(functionName);
899
- if (version === "15.0.0-rc.2") {
899
+ if (version === "15.0.0-rc.4") {
900
900
  return linkerRanges[linkerRanges.length - 1].linker;
901
901
  }
902
902
  const declarationRange = getRange(">=", minVersion);
@@ -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 = "15.0.0-rc.2";
899
+ var NGCC_VERSION = "15.0.0-rc.4";
900
900
  function needsCleaning(packageJson) {
901
901
  return Object.values(packageJson.__processed_by_ivy_ngcc__ || {}).some((value) => value !== NGCC_VERSION);
902
902
  }
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("15.0.0-rc.2");
72
+ var VERSION = new Version("15.0.0-rc.4");
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 = "15.0.0-rc.2";
12
+ export declare const NGCC_VERSION = "15.0.0-rc.4";
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": "15.0.0-rc.2",
3
+ "version": "15.0.0-rc.4",
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.0.0-rc.2",
68
+ "@angular/compiler": "15.0.0-rc.4",
69
69
  "typescript": ">=4.8.2 <4.9"
70
70
  },
71
71
  "repository": {