@angular/compiler-cli 13.0.1 → 13.0.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.
package/bundles/index.js CHANGED
@@ -446,7 +446,7 @@ import { StaticReflector, StaticSymbol } from "@angular/compiler";
446
446
 
447
447
  // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/version.mjs
448
448
  import { Version } from "@angular/compiler";
449
- var VERSION = new Version("13.0.1");
449
+ var VERSION = new Version("13.0.2");
450
450
 
451
451
  // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/metadata/collector.mjs
452
452
  import ts4 from "typescript";
@@ -1086,7 +1086,7 @@ var \u0275\u0275ngDeclareNgModule = "\u0275\u0275ngDeclareNgModule";
1086
1086
  var \u0275\u0275ngDeclarePipe = "\u0275\u0275ngDeclarePipe";
1087
1087
  function createLinkerMap(environment, sourceUrl, code) {
1088
1088
  const linkers = new Map();
1089
- const LATEST_VERSION_RANGE = getRange("<=", "13.0.1");
1089
+ const LATEST_VERSION_RANGE = getRange("<=", "13.0.2");
1090
1090
  linkers.set(\u0275\u0275ngDeclareDirective, [
1091
1091
  { range: LATEST_VERSION_RANGE, linker: new PartialDirectiveLinkerVersion1(sourceUrl, code) }
1092
1092
  ]);
@@ -1133,7 +1133,7 @@ var PartialLinkerSelector = class {
1133
1133
  throw new Error(`Unknown partial declaration function ${functionName}.`);
1134
1134
  }
1135
1135
  const linkerRanges = this.linkers.get(functionName);
1136
- if (version === "13.0.1") {
1136
+ if (version === "13.0.2") {
1137
1137
  return linkerRanges[linkerRanges.length - 1].linker;
1138
1138
  }
1139
1139
  const declarationRange = getRange(">=", minVersion);
@@ -795,7 +795,7 @@ var declarationFunctions = [
795
795
  ];
796
796
  function createLinkerMap(environment, sourceUrl, code) {
797
797
  const linkers = new Map();
798
- const LATEST_VERSION_RANGE = getRange("<=", "13.0.1");
798
+ const LATEST_VERSION_RANGE = getRange("<=", "13.0.2");
799
799
  linkers.set(\u0275\u0275ngDeclareDirective, [
800
800
  { range: LATEST_VERSION_RANGE, linker: new PartialDirectiveLinkerVersion1(sourceUrl, code) }
801
801
  ]);
@@ -842,7 +842,7 @@ var PartialLinkerSelector = class {
842
842
  throw new Error(`Unknown partial declaration function ${functionName}.`);
843
843
  }
844
844
  const linkerRanges = this.linkers.get(functionName);
845
- if (version === "13.0.1") {
845
+ if (version === "13.0.2") {
846
846
  return linkerRanges[linkerRanges.length - 1].linker;
847
847
  }
848
848
  const declarationRange = getRange(">=", minVersion);
@@ -4469,7 +4469,7 @@ var ProgramBasedEntryPointFinder = class extends TracingEntryPointFinder {
4469
4469
  };
4470
4470
 
4471
4471
  // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/build_marker.mjs
4472
- var NGCC_VERSION = "13.0.1";
4472
+ var NGCC_VERSION = "13.0.2";
4473
4473
  function needsCleaning(packageJson) {
4474
4474
  return Object.values(packageJson.__processed_by_ivy_ngcc__ || {}).some((value) => value !== NGCC_VERSION);
4475
4475
  }
@@ -4468,7 +4468,7 @@ var ProgramBasedEntryPointFinder = class extends TracingEntryPointFinder {
4468
4468
  };
4469
4469
 
4470
4470
  // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/build_marker.mjs
4471
- var NGCC_VERSION = "13.0.1";
4471
+ var NGCC_VERSION = "13.0.2";
4472
4472
  function needsCleaning(packageJson) {
4473
4473
  return Object.values(packageJson.__processed_by_ivy_ngcc__ || {}).some((value) => value !== NGCC_VERSION);
4474
4474
  }
@@ -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 = "13.0.1";
12
+ export declare const NGCC_VERSION = "13.0.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": "13.0.1",
3
+ "version": "13.0.2",
4
4
  "description": "Angular - the compiler CLI for Node.js",
5
5
  "typings": "index.d.ts",
6
6
  "bin": {
@@ -66,7 +66,7 @@
66
66
  "yargs": "^17.2.1"
67
67
  },
68
68
  "peerDependencies": {
69
- "@angular/compiler": "13.0.1",
69
+ "@angular/compiler": "13.0.2",
70
70
  "typescript": ">=4.4.2 <4.5"
71
71
  },
72
72
  "repository": {