@angular/compiler-cli 16.1.3 → 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.
Files changed (37) hide show
  1. package/bundles/{chunk-3SPKRPX3.js → chunk-5MERUDE2.js} +124 -110
  2. package/bundles/{chunk-3SPKRPX3.js.map → chunk-5MERUDE2.js.map} +1 -1
  3. package/bundles/{chunk-LOZJLM26.js → chunk-AAX4HKH5.js} +8 -8
  4. package/bundles/{chunk-ADNHTL54.js → chunk-BMUVRSIJ.js} +33 -32
  5. package/bundles/{chunk-ADNHTL54.js.map → chunk-BMUVRSIJ.js.map} +1 -1
  6. package/bundles/{chunk-TBUSSXUA.js → chunk-EC5K6QPP.js} +7 -7
  7. package/bundles/{chunk-LVVIYUZC.js → chunk-GD2XA2JL.js} +94 -94
  8. package/bundles/{chunk-LVVIYUZC.js.map → chunk-GD2XA2JL.js.map} +1 -1
  9. package/bundles/{chunk-EKTJ7622.js → chunk-GYHDNUIK.js} +7 -7
  10. package/bundles/{chunk-7PCPPTTO.js → chunk-HJOPJLIM.js} +5 -5
  11. package/bundles/{chunk-WF3L5COT.js → chunk-KPIJL3UY.js} +21 -21
  12. package/bundles/{chunk-NIK4FIWB.js → chunk-OIJPCKRW.js} +6 -6
  13. package/bundles/{chunk-SJLWUYXS.js → chunk-ONCDPGC3.js} +5 -5
  14. package/bundles/{chunk-LYJKWJUC.js → chunk-SBDNBITT.js} +3 -3
  15. package/bundles/{chunk-CWFGODIP.js → chunk-TCDCHMLM.js} +5 -5
  16. package/bundles/index.js +13 -13
  17. package/bundles/linker/babel/index.js +13 -13
  18. package/bundles/linker/index.js +5 -5
  19. package/bundles/ngcc/index.js +1 -1
  20. package/bundles/private/bazel.js +1 -1
  21. package/bundles/private/localize.js +3 -3
  22. package/bundles/private/migrations.js +6 -6
  23. package/bundles/private/tooling.js +4 -4
  24. package/bundles/src/bin/ng_xi18n.js +11 -11
  25. package/bundles/src/bin/ngc.js +9 -9
  26. package/bundles_metadata.json +1 -1
  27. package/package.json +2 -2
  28. package/src/ngtsc/annotations/ng_module/src/handler.d.ts +3 -2
  29. /package/bundles/{chunk-LOZJLM26.js.map → chunk-AAX4HKH5.js.map} +0 -0
  30. /package/bundles/{chunk-TBUSSXUA.js.map → chunk-EC5K6QPP.js.map} +0 -0
  31. /package/bundles/{chunk-EKTJ7622.js.map → chunk-GYHDNUIK.js.map} +0 -0
  32. /package/bundles/{chunk-7PCPPTTO.js.map → chunk-HJOPJLIM.js.map} +0 -0
  33. /package/bundles/{chunk-WF3L5COT.js.map → chunk-KPIJL3UY.js.map} +0 -0
  34. /package/bundles/{chunk-NIK4FIWB.js.map → chunk-OIJPCKRW.js.map} +0 -0
  35. /package/bundles/{chunk-SJLWUYXS.js.map → chunk-ONCDPGC3.js.map} +0 -0
  36. /package/bundles/{chunk-LYJKWJUC.js.map → chunk-SBDNBITT.js.map} +0 -0
  37. /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",
3
+ "version": "16.1.4",
4
4
  "description": "Angular - the compiler CLI for Node.js",
5
5
  "typings": "index.d.ts",
6
6
  "bin": {
@@ -53,7 +53,7 @@
53
53
  "yargs": "^17.2.1"
54
54
  },
55
55
  "peerDependencies": {
56
- "@angular/compiler": "16.1.3",
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
- 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);
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;