@angular/compiler-cli 14.0.0-rc.0 → 14.0.0-rc.1
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/{chunk-GJVJ6GH4.js → chunk-74SXTDBS.js} +15 -13
- package/bundles/{chunk-GJVJ6GH4.js.map → chunk-74SXTDBS.js.map} +1 -1
- package/bundles/chunk-7XY4OMWJ.js +2 -2
- package/bundles/{chunk-KPGMJT2X.js → chunk-N4EFPPNE.js} +2 -2
- package/bundles/{chunk-KPGMJT2X.js.map → chunk-N4EFPPNE.js.map} +0 -0
- package/bundles/{chunk-N6HUFHQ6.js → chunk-TFEYVOY6.js} +5 -5
- package/bundles/{chunk-N6HUFHQ6.js.map → chunk-TFEYVOY6.js.map} +1 -1
- package/bundles/{chunk-BHGVN4MI.js → chunk-UJXXCVVY.js} +3 -3
- package/bundles/{chunk-BHGVN4MI.js.map → chunk-UJXXCVVY.js.map} +0 -0
- package/bundles/{chunk-53V6MPBS.js → chunk-UMY2M5GZ.js} +3 -3
- package/bundles/{chunk-53V6MPBS.js.map → chunk-UMY2M5GZ.js.map} +0 -0
- package/bundles/index.js +3 -3
- package/bundles/ngcc/index.js +4 -4
- package/bundles/ngcc/main-ngcc.js +4 -4
- package/bundles/ngcc/src/execution/cluster/ngcc_cluster_worker.js +3 -3
- package/bundles/private/migrations.js +1 -1
- package/bundles/src/bin/ng_xi18n.js +3 -3
- package/bundles/src/bin/ngc.js +3 -3
- package/bundles_metadata.json +1 -1
- package/ngcc/src/packages/build_marker.d.ts +1 -1
- package/package.json +2 -2
- package/src/ngtsc/annotations/component/src/handler.d.ts +1 -1
|
@@ -828,7 +828,7 @@ var declarationFunctions = [
|
|
|
828
828
|
];
|
|
829
829
|
function createLinkerMap(environment, sourceUrl, code) {
|
|
830
830
|
const linkers = /* @__PURE__ */ new Map();
|
|
831
|
-
const LATEST_VERSION_RANGE = getRange("<=", "14.0.0-rc.
|
|
831
|
+
const LATEST_VERSION_RANGE = getRange("<=", "14.0.0-rc.1");
|
|
832
832
|
linkers.set(\u0275\u0275ngDeclareDirective, [
|
|
833
833
|
{ range: LATEST_VERSION_RANGE, linker: new PartialDirectiveLinkerVersion1(sourceUrl, code) }
|
|
834
834
|
]);
|
|
@@ -875,7 +875,7 @@ var PartialLinkerSelector = class {
|
|
|
875
875
|
throw new Error(`Unknown partial declaration function ${functionName}.`);
|
|
876
876
|
}
|
|
877
877
|
const linkerRanges = this.linkers.get(functionName);
|
|
878
|
-
if (version === "14.0.0-rc.
|
|
878
|
+
if (version === "14.0.0-rc.1") {
|
|
879
879
|
return linkerRanges[linkerRanges.length - 1].linker;
|
|
880
880
|
}
|
|
881
881
|
const declarationRange = getRange(">=", minVersion);
|
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
formatDiagnostics,
|
|
15
15
|
performCompilation,
|
|
16
16
|
readConfiguration
|
|
17
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-TFEYVOY6.js";
|
|
18
18
|
import {
|
|
19
19
|
__spreadProps,
|
|
20
20
|
__spreadValues
|
|
@@ -379,4 +379,4 @@ export {
|
|
|
379
379
|
* Use of this source code is governed by an MIT-style license that can be
|
|
380
380
|
* found in the LICENSE file at https://angular.io/license
|
|
381
381
|
*/
|
|
382
|
-
//# sourceMappingURL=chunk-
|
|
382
|
+
//# sourceMappingURL=chunk-N4EFPPNE.js.map
|
|
File without changes
|
|
@@ -30,7 +30,7 @@ import {
|
|
|
30
30
|
aliasTransformFactory,
|
|
31
31
|
declarationTransformFactory,
|
|
32
32
|
ivyTransformFactory
|
|
33
|
-
} from "./chunk-
|
|
33
|
+
} from "./chunk-74SXTDBS.js";
|
|
34
34
|
import {
|
|
35
35
|
TypeScriptReflectionHost,
|
|
36
36
|
isNamedClassDeclaration
|
|
@@ -1909,19 +1909,19 @@ var StandaloneComponentScopeReader = class {
|
|
|
1909
1909
|
seen.add(ref.node);
|
|
1910
1910
|
const dirMeta = this.metaReader.getDirectiveMetadata(ref);
|
|
1911
1911
|
if (dirMeta !== null) {
|
|
1912
|
-
dependencies.add(dirMeta);
|
|
1912
|
+
dependencies.add(__spreadProps(__spreadValues({}, dirMeta), { ref }));
|
|
1913
1913
|
isPoisoned = isPoisoned || dirMeta.isPoisoned || !dirMeta.isStandalone;
|
|
1914
1914
|
continue;
|
|
1915
1915
|
}
|
|
1916
1916
|
const pipeMeta = this.metaReader.getPipeMetadata(ref);
|
|
1917
1917
|
if (pipeMeta !== null) {
|
|
1918
|
-
dependencies.add(pipeMeta);
|
|
1918
|
+
dependencies.add(__spreadProps(__spreadValues({}, pipeMeta), { ref }));
|
|
1919
1919
|
isPoisoned = isPoisoned || !pipeMeta.isStandalone;
|
|
1920
1920
|
continue;
|
|
1921
1921
|
}
|
|
1922
1922
|
const ngModuleMeta = this.metaReader.getNgModuleMetadata(ref);
|
|
1923
1923
|
if (ngModuleMeta !== null) {
|
|
1924
|
-
dependencies.add(ngModuleMeta);
|
|
1924
|
+
dependencies.add(__spreadProps(__spreadValues({}, ngModuleMeta), { ref }));
|
|
1925
1925
|
let ngModuleScope;
|
|
1926
1926
|
if (ref.node.getSourceFile().isDeclarationFile) {
|
|
1927
1927
|
ngModuleScope = this.dtsModuleReader.resolve(ref);
|
|
@@ -7297,4 +7297,4 @@ export {
|
|
|
7297
7297
|
* found in the LICENSE file at https://angular.io/license
|
|
7298
7298
|
*/
|
|
7299
7299
|
// Closure Compiler ignores @suppress and similar if the comment contains @license.
|
|
7300
|
-
//# sourceMappingURL=chunk-
|
|
7300
|
+
//# sourceMappingURL=chunk-TFEYVOY6.js.map
|