@angular/compiler-cli 14.1.0-next.1 → 14.1.0-next.2

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