@angular/compiler-cli 16.1.2 → 16.1.4
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-3SPKRPX3.js → chunk-5MERUDE2.js} +124 -110
- package/bundles/{chunk-3SPKRPX3.js.map → chunk-5MERUDE2.js.map} +1 -1
- package/bundles/{chunk-LOZJLM26.js → chunk-AAX4HKH5.js} +8 -8
- package/bundles/{chunk-ADNHTL54.js → chunk-BMUVRSIJ.js} +33 -32
- package/bundles/{chunk-ADNHTL54.js.map → chunk-BMUVRSIJ.js.map} +1 -1
- package/bundles/{chunk-TBUSSXUA.js → chunk-EC5K6QPP.js} +7 -7
- package/bundles/{chunk-LVVIYUZC.js → chunk-GD2XA2JL.js} +94 -94
- package/bundles/{chunk-LVVIYUZC.js.map → chunk-GD2XA2JL.js.map} +1 -1
- package/bundles/{chunk-EKTJ7622.js → chunk-GYHDNUIK.js} +7 -7
- package/bundles/{chunk-7PCPPTTO.js → chunk-HJOPJLIM.js} +5 -5
- package/bundles/{chunk-WF3L5COT.js → chunk-KPIJL3UY.js} +21 -21
- package/bundles/{chunk-NIK4FIWB.js → chunk-OIJPCKRW.js} +6 -6
- package/bundles/{chunk-SJLWUYXS.js → chunk-ONCDPGC3.js} +5 -5
- package/bundles/{chunk-LYJKWJUC.js → chunk-SBDNBITT.js} +3 -3
- package/bundles/{chunk-CWFGODIP.js → chunk-TCDCHMLM.js} +5 -5
- package/bundles/index.js +13 -13
- package/bundles/linker/babel/index.js +13 -13
- package/bundles/linker/index.js +5 -5
- package/bundles/ngcc/index.js +1 -1
- package/bundles/private/bazel.js +1 -1
- package/bundles/private/localize.js +3 -3
- package/bundles/private/migrations.js +6 -6
- package/bundles/private/tooling.js +4 -4
- package/bundles/src/bin/ng_xi18n.js +11 -11
- package/bundles/src/bin/ngc.js +9 -9
- package/bundles_metadata.json +1 -1
- package/package.json +3 -3
- package/src/ngtsc/annotations/ng_module/src/handler.d.ts +3 -2
- /package/bundles/{chunk-LOZJLM26.js.map → chunk-AAX4HKH5.js.map} +0 -0
- /package/bundles/{chunk-TBUSSXUA.js.map → chunk-EC5K6QPP.js.map} +0 -0
- /package/bundles/{chunk-EKTJ7622.js.map → chunk-GYHDNUIK.js.map} +0 -0
- /package/bundles/{chunk-7PCPPTTO.js.map → chunk-HJOPJLIM.js.map} +0 -0
- /package/bundles/{chunk-WF3L5COT.js.map → chunk-KPIJL3UY.js.map} +0 -0
- /package/bundles/{chunk-NIK4FIWB.js.map → chunk-OIJPCKRW.js.map} +0 -0
- /package/bundles/{chunk-SJLWUYXS.js.map → chunk-ONCDPGC3.js.map} +0 -0
- /package/bundles/{chunk-LYJKWJUC.js.map → chunk-SBDNBITT.js.map} +0 -0
- /package/bundles/{chunk-CWFGODIP.js.map → chunk-TCDCHMLM.js.map} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/compiler-cli",
|
|
3
|
-
"version": "16.1.
|
|
3
|
+
"version": "16.1.4",
|
|
4
4
|
"description": "Angular - the compiler CLI for Node.js",
|
|
5
5
|
"typings": "index.d.ts",
|
|
6
6
|
"bin": {
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
}
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@babel/core": "7.
|
|
46
|
+
"@babel/core": "7.22.5",
|
|
47
47
|
"@jridgewell/sourcemap-codec": "^1.4.14",
|
|
48
48
|
"reflect-metadata": "^0.1.2",
|
|
49
49
|
"chokidar": "^3.0.0",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"yargs": "^17.2.1"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
|
-
"@angular/compiler": "16.1.
|
|
56
|
+
"@angular/compiler": "16.1.4",
|
|
57
57
|
"typescript": ">=4.9.3 <5.2"
|
|
58
58
|
},
|
|
59
59
|
"repository": {
|
|
@@ -14,7 +14,7 @@ import { PartialEvaluator } from '../../../partial_evaluator';
|
|
|
14
14
|
import { PerfRecorder } from '../../../perf';
|
|
15
15
|
import { ClassDeclaration, Decorator, ReflectionHost } from '../../../reflection';
|
|
16
16
|
import { LocalModuleScopeRegistry } from '../../../scope';
|
|
17
|
-
import { AnalysisOutput, CompileResult, DecoratorHandler, DetectResult, HandlerPrecedence, ResolveResult } from '../../../transform';
|
|
17
|
+
import { AnalysisOutput, CompilationMode, CompileResult, DecoratorHandler, DetectResult, HandlerPrecedence, ResolveResult } from '../../../transform';
|
|
18
18
|
import { InjectableClassRegistry, ReferencesRegistry } from '../../common';
|
|
19
19
|
export interface NgModuleAnalysis {
|
|
20
20
|
mod: R3NgModuleMetadata;
|
|
@@ -81,7 +81,8 @@ export declare class NgModuleDecoratorHandler implements DecoratorHandler<Decora
|
|
|
81
81
|
private injectableRegistry;
|
|
82
82
|
private perf;
|
|
83
83
|
private includeClassMetadata;
|
|
84
|
-
|
|
84
|
+
private readonly compilationMode;
|
|
85
|
+
constructor(reflector: ReflectionHost, evaluator: PartialEvaluator, metaReader: MetadataReader, metaRegistry: MetadataRegistry, scopeRegistry: LocalModuleScopeRegistry, referencesRegistry: ReferencesRegistry, exportedProviderStatusResolver: ExportedProviderStatusResolver, semanticDepGraphUpdater: SemanticDepGraphUpdater | null, isCore: boolean, refEmitter: ReferenceEmitter, annotateForClosureCompiler: boolean, onlyPublishPublicTypings: boolean, injectableRegistry: InjectableClassRegistry, perf: PerfRecorder, includeClassMetadata: boolean, compilationMode: CompilationMode);
|
|
85
86
|
readonly precedence = HandlerPrecedence.PRIMARY;
|
|
86
87
|
readonly name = "NgModuleDecoratorHandler";
|
|
87
88
|
detect(node: ClassDeclaration, decorators: Decorator[] | null): DetectResult<Decorator> | undefined;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|