@angular/compiler-cli 13.1.0 → 13.2.0-next.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.
|
@@ -787,7 +787,7 @@ var declarationFunctions = [
|
|
|
787
787
|
];
|
|
788
788
|
function createLinkerMap(environment, sourceUrl, code) {
|
|
789
789
|
const linkers = new Map();
|
|
790
|
-
const LATEST_VERSION_RANGE = getRange("<=", "13.
|
|
790
|
+
const LATEST_VERSION_RANGE = getRange("<=", "13.2.0-next.0");
|
|
791
791
|
linkers.set(\u0275\u0275ngDeclareDirective, [
|
|
792
792
|
{ range: LATEST_VERSION_RANGE, linker: new PartialDirectiveLinkerVersion1(sourceUrl, code) }
|
|
793
793
|
]);
|
|
@@ -834,7 +834,7 @@ var PartialLinkerSelector = class {
|
|
|
834
834
|
throw new Error(`Unknown partial declaration function ${functionName}.`);
|
|
835
835
|
}
|
|
836
836
|
const linkerRanges = this.linkers.get(functionName);
|
|
837
|
-
if (version === "13.
|
|
837
|
+
if (version === "13.2.0-next.0") {
|
|
838
838
|
return linkerRanges[linkerRanges.length - 1].linker;
|
|
839
839
|
}
|
|
840
840
|
const declarationRange = getRange(">=", minVersion);
|
|
@@ -887,7 +887,7 @@ var ProgramBasedEntryPointFinder = class extends TracingEntryPointFinder {
|
|
|
887
887
|
};
|
|
888
888
|
|
|
889
889
|
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/build_marker.mjs
|
|
890
|
-
var NGCC_VERSION = "13.
|
|
890
|
+
var NGCC_VERSION = "13.2.0-next.0";
|
|
891
891
|
function needsCleaning(packageJson) {
|
|
892
892
|
return Object.values(packageJson.__processed_by_ivy_ngcc__ || {}).some((value) => value !== NGCC_VERSION);
|
|
893
893
|
}
|
package/bundles/index.js
CHANGED
|
@@ -70,7 +70,7 @@ import {
|
|
|
70
70
|
|
|
71
71
|
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/version.mjs
|
|
72
72
|
import { Version } from "@angular/compiler";
|
|
73
|
-
var VERSION = new Version("13.
|
|
73
|
+
var VERSION = new Version("13.2.0-next.0");
|
|
74
74
|
|
|
75
75
|
// bazel-out/darwin-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 = "13.
|
|
12
|
+
export declare const NGCC_VERSION = "13.2.0-next.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.
|
|
3
|
+
"version": "13.2.0-next.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.
|
|
69
|
+
"@angular/compiler": "13.2.0-next.0",
|
|
70
70
|
"typescript": ">=4.4.2 <4.6"
|
|
71
71
|
},
|
|
72
72
|
"repository": {
|