@angular/compiler-cli 13.2.0-next.2 → 13.2.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-UESD6FVI.js → chunk-ALKVYGAK.js} +5 -5
- package/bundles/{chunk-UESD6FVI.js.map → chunk-ALKVYGAK.js.map} +0 -0
- package/bundles/{chunk-L2JNRKLG.js → chunk-C44PYKVA.js} +530 -116
- package/bundles/chunk-C44PYKVA.js.map +6 -0
- package/bundles/{chunk-676MI6WZ.js → chunk-FXU7FMZC.js} +5 -5
- package/bundles/{chunk-676MI6WZ.js.map → chunk-FXU7FMZC.js.map} +1 -1
- package/bundles/{chunk-ADHVDA4A.js → chunk-K2Z44JHH.js} +1 -1
- package/bundles/{chunk-ADHVDA4A.js.map → chunk-K2Z44JHH.js.map} +1 -1
- package/bundles/{chunk-NU7DCJLY.js → chunk-NRJCXTRC.js} +4 -4
- package/bundles/{chunk-NU7DCJLY.js.map → chunk-NRJCXTRC.js.map} +1 -1
- package/bundles/{chunk-ZWPDFY6U.js → chunk-O57ZKMWS.js} +2 -2
- package/bundles/{chunk-ZWPDFY6U.js.map → chunk-O57ZKMWS.js.map} +0 -0
- package/bundles/{chunk-L5DQYLOG.js → chunk-PJPAHVUO.js} +428 -788
- package/bundles/chunk-PJPAHVUO.js.map +6 -0
- package/bundles/{chunk-QGM254OS.js → chunk-XLVWXQAR.js} +132 -85
- package/bundles/{chunk-QGM254OS.js.map → chunk-XLVWXQAR.js.map} +2 -2
- package/bundles/{chunk-QBU7RUKB.js → chunk-XNYP2SFR.js} +8 -3
- package/bundles/chunk-XNYP2SFR.js.map +6 -0
- package/bundles/{chunk-O4XVCXRT.js → chunk-Z2HS4HDG.js} +2 -2
- package/bundles/{chunk-O4XVCXRT.js.map → chunk-Z2HS4HDG.js.map} +0 -0
- package/bundles/index.js +7 -6
- package/bundles/index.js.map +1 -1
- package/bundles/linker/babel/index.js +4 -4
- package/bundles/linker/babel/index.js.map +1 -1
- package/bundles/linker/index.js +4 -4
- package/bundles/ngcc/index.js +7 -7
- package/bundles/ngcc/main-ngcc.js +8 -8
- package/bundles/ngcc/main-ngcc.js.map +1 -1
- package/bundles/ngcc/src/execution/cluster/ngcc_cluster_worker.js +7 -7
- package/bundles/ngcc/src/execution/cluster/ngcc_cluster_worker.js.map +1 -1
- package/bundles/ngcc/src/locking/lock_file_with_child_process/ngcc_lock_unlocker.js +1 -1
- package/bundles/private/localize.js +2 -2
- package/bundles/private/migrations.js +3 -3
- package/bundles/src/bin/ng_xi18n.js +5 -5
- package/bundles/src/bin/ngc.js +5 -5
- package/bundles_metadata.json +1 -1
- package/ngcc/src/packages/adjust_cjs_umd_exports.d.ts +17 -0
- package/ngcc/src/packages/build_marker.d.ts +1 -1
- package/ngcc/src/packages/source_file_cache.d.ts +2 -1
- package/package.json +2 -3
- package/src/ngtsc/core/api/src/options.d.ts +0 -4
- package/src/ngtsc/imports/src/emitter.d.ts +16 -2
- package/src/ngtsc/indexer/src/api.d.ts +1 -0
- package/src/ngtsc/indexer/src/template.d.ts +4 -1
- package/bundles/chunk-L2JNRKLG.js.map +0 -6
- package/bundles/chunk-L5DQYLOG.js.map +0 -6
- package/bundles/chunk-QBU7RUKB.js.map +0 -6
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
import {
|
|
7
7
|
SourceFileLoader
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-K2Z44JHH.js";
|
|
9
9
|
import {
|
|
10
10
|
Context,
|
|
11
11
|
ExpressionTranslatorVisitor
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-XNYP2SFR.js";
|
|
13
13
|
import {
|
|
14
14
|
__spreadProps,
|
|
15
15
|
__spreadValues
|
|
@@ -785,7 +785,7 @@ var declarationFunctions = [
|
|
|
785
785
|
];
|
|
786
786
|
function createLinkerMap(environment, sourceUrl, code) {
|
|
787
787
|
const linkers = /* @__PURE__ */ new Map();
|
|
788
|
-
const LATEST_VERSION_RANGE = getRange("<=", "13.2.
|
|
788
|
+
const LATEST_VERSION_RANGE = getRange("<=", "13.2.1");
|
|
789
789
|
linkers.set(\u0275\u0275ngDeclareDirective, [
|
|
790
790
|
{ range: LATEST_VERSION_RANGE, linker: new PartialDirectiveLinkerVersion1(sourceUrl, code) }
|
|
791
791
|
]);
|
|
@@ -832,7 +832,7 @@ var PartialLinkerSelector = class {
|
|
|
832
832
|
throw new Error(`Unknown partial declaration function ${functionName}.`);
|
|
833
833
|
}
|
|
834
834
|
const linkerRanges = this.linkers.get(functionName);
|
|
835
|
-
if (version === "13.2.
|
|
835
|
+
if (version === "13.2.1") {
|
|
836
836
|
return linkerRanges[linkerRanges.length - 1].linker;
|
|
837
837
|
}
|
|
838
838
|
const declarationRange = getRange(">=", minVersion);
|
|
@@ -963,4 +963,4 @@ export {
|
|
|
963
963
|
* Use of this source code is governed by an MIT-style license that can be
|
|
964
964
|
* found in the LICENSE file at https://angular.io/license
|
|
965
965
|
*/
|
|
966
|
-
//# sourceMappingURL=chunk-
|
|
966
|
+
//# sourceMappingURL=chunk-ALKVYGAK.js.map
|
|
File without changes
|