@angular/compiler-cli 13.0.0-rc.3 → 13.0.0

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/darwin-fastbuild/bin/packages/compiler-cli/src/version.mjs
448
448
  import { Version } from "@angular/compiler";
449
- var VERSION = new Version("13.0.0-rc.3");
449
+ var VERSION = new Version("13.0.0");
450
450
 
451
451
  // bazel-out/darwin-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.0-rc.3");
1089
+ const LATEST_VERSION_RANGE = getRange("<=", "13.0.0");
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.0-rc.3") {
1136
+ if (version === "13.0.0") {
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.0-rc.3");
798
+ const LATEST_VERSION_RANGE = getRange("<=", "13.0.0");
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.0-rc.3") {
845
+ if (version === "13.0.0") {
846
846
  return linkerRanges[linkerRanges.length - 1].linker;
847
847
  }
848
848
  const declarationRange = getRange(">=", minVersion);
@@ -4458,7 +4458,7 @@ var ProgramBasedEntryPointFinder = class extends TracingEntryPointFinder {
4458
4458
  };
4459
4459
 
4460
4460
  // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/build_marker.mjs
4461
- var NGCC_VERSION = "13.0.0-rc.3";
4461
+ var NGCC_VERSION = "13.0.0";
4462
4462
  function needsCleaning(packageJson) {
4463
4463
  return Object.values(packageJson.__processed_by_ivy_ngcc__ || {}).some((value) => value !== NGCC_VERSION);
4464
4464
  }
@@ -4457,7 +4457,7 @@ var ProgramBasedEntryPointFinder = class extends TracingEntryPointFinder {
4457
4457
  };
4458
4458
 
4459
4459
  // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/build_marker.mjs
4460
- var NGCC_VERSION = "13.0.0-rc.3";
4460
+ var NGCC_VERSION = "13.0.0";
4461
4461
  function needsCleaning(packageJson) {
4462
4462
  return Object.values(packageJson.__processed_by_ivy_ngcc__ || {}).some((value) => value !== NGCC_VERSION);
4463
4463
  }
@@ -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.0-rc.3";
12
+ export declare const NGCC_VERSION = "13.0.0";
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.0-rc.3",
3
+ "version": "13.0.0",
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.0-rc.3",
69
+ "@angular/compiler": "13.0.0",
70
70
  "typescript": ">=4.4.2 <4.5"
71
71
  },
72
72
  "repository": {