@angular/compiler-cli 16.1.0-rc.0 → 16.1.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-QCI2PLQA.js → chunk-EMELASNB.js} +5 -2
- package/bundles/{chunk-QCI2PLQA.js.map → chunk-EMELASNB.js.map} +1 -1
- package/bundles/{chunk-7HUJG2M6.js → chunk-JXL4GN5W.js} +7 -7
- package/bundles/{chunk-7HUJG2M6.js.map → chunk-JXL4GN5W.js.map} +1 -1
- package/bundles/{chunk-XTUD3JK5.js → chunk-LKUXUQLD.js} +2 -2
- package/bundles/chunk-OOJTRSMD.js +2 -2
- package/bundles/index.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/package.json +2 -2
- package/src/ngtsc/annotations/component/src/handler.d.ts +1 -1
- package/src/ngtsc/annotations/directive/src/handler.d.ts +1 -1
- package/src/ngtsc/annotations/ng_module/src/handler.d.ts +1 -1
- package/src/ngtsc/annotations/src/injectable.d.ts +1 -1
- package/src/ngtsc/annotations/src/pipe.d.ts +1 -1
- package/src/ngtsc/core/api/src/public_options.d.ts +4 -1
- /package/bundles/{chunk-XTUD3JK5.js.map → chunk-LKUXUQLD.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.1",
|
|
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.
|
|
56
|
+
"@angular/compiler": "16.1.1",
|
|
57
57
|
"typescript": ">=4.9.3 <5.2"
|
|
58
58
|
},
|
|
59
59
|
"repository": {
|
|
@@ -69,7 +69,7 @@ export declare class ComponentDecoratorHandler implements DecoratorHandler<Decor
|
|
|
69
69
|
private preanalyzeStylesCache;
|
|
70
70
|
private extractTemplateOptions;
|
|
71
71
|
readonly precedence = HandlerPrecedence.PRIMARY;
|
|
72
|
-
readonly name
|
|
72
|
+
readonly name = "ComponentDecoratorHandler";
|
|
73
73
|
detect(node: ClassDeclaration, decorators: Decorator[] | null): DetectResult<Decorator> | undefined;
|
|
74
74
|
preanalyze(node: ClassDeclaration, decorator: Readonly<Decorator>): Promise<void> | undefined;
|
|
75
75
|
analyze(node: ClassDeclaration, decorator: Readonly<Decorator>, flags?: HandlerFlags): AnalysisOutput<ComponentAnalysisData>;
|
|
@@ -47,7 +47,7 @@ export declare class DirectiveDecoratorHandler implements DecoratorHandler<Decor
|
|
|
47
47
|
private perf;
|
|
48
48
|
constructor(reflector: ReflectionHost, evaluator: PartialEvaluator, metaRegistry: MetadataRegistry, scopeRegistry: LocalModuleScopeRegistry, metaReader: MetadataReader, injectableRegistry: InjectableClassRegistry, refEmitter: ReferenceEmitter, referencesRegistry: ReferencesRegistry, isCore: boolean, strictCtorDeps: boolean, semanticDepGraphUpdater: SemanticDepGraphUpdater | null, annotateForClosureCompiler: boolean, perf: PerfRecorder);
|
|
49
49
|
readonly precedence = HandlerPrecedence.PRIMARY;
|
|
50
|
-
readonly name
|
|
50
|
+
readonly name = "DirectiveDecoratorHandler";
|
|
51
51
|
detect(node: ClassDeclaration, decorators: Decorator[] | null): DetectResult<Decorator | null> | undefined;
|
|
52
52
|
analyze(node: ClassDeclaration, decorator: Readonly<Decorator | null>, flags?: HandlerFlags): AnalysisOutput<DirectiveHandlerData>;
|
|
53
53
|
symbol(node: ClassDeclaration, analysis: Readonly<DirectiveHandlerData>): DirectiveSymbol;
|
|
@@ -82,7 +82,7 @@ export declare class NgModuleDecoratorHandler implements DecoratorHandler<Decora
|
|
|
82
82
|
private perf;
|
|
83
83
|
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);
|
|
84
84
|
readonly precedence = HandlerPrecedence.PRIMARY;
|
|
85
|
-
readonly name
|
|
85
|
+
readonly name = "NgModuleDecoratorHandler";
|
|
86
86
|
detect(node: ClassDeclaration, decorators: Decorator[] | null): DetectResult<Decorator> | undefined;
|
|
87
87
|
analyze(node: ClassDeclaration, decorator: Readonly<Decorator>): AnalysisOutput<NgModuleAnalysis>;
|
|
88
88
|
symbol(node: ClassDeclaration, analysis: NgModuleAnalysis): NgModuleSymbol;
|
|
@@ -43,7 +43,7 @@ export declare class InjectableDecoratorHandler implements DecoratorHandler<Deco
|
|
|
43
43
|
*/
|
|
44
44
|
errorOnDuplicateProv?: boolean);
|
|
45
45
|
readonly precedence = HandlerPrecedence.SHARED;
|
|
46
|
-
readonly name
|
|
46
|
+
readonly name = "InjectableDecoratorHandler";
|
|
47
47
|
detect(node: ClassDeclaration, decorators: Decorator[] | null): DetectResult<Decorator> | undefined;
|
|
48
48
|
analyze(node: ClassDeclaration, decorator: Readonly<Decorator>): AnalysisOutput<InjectableHandlerData>;
|
|
49
49
|
symbol(): null;
|
|
@@ -40,7 +40,7 @@ export declare class PipeDecoratorHandler implements DecoratorHandler<Decorator,
|
|
|
40
40
|
private perf;
|
|
41
41
|
constructor(reflector: ReflectionHost, evaluator: PartialEvaluator, metaRegistry: MetadataRegistry, scopeRegistry: LocalModuleScopeRegistry, injectableRegistry: InjectableClassRegistry, isCore: boolean, perf: PerfRecorder);
|
|
42
42
|
readonly precedence = HandlerPrecedence.PRIMARY;
|
|
43
|
-
readonly name
|
|
43
|
+
readonly name = "PipeDecoratorHandler";
|
|
44
44
|
detect(node: ClassDeclaration, decorators: Decorator[] | null): DetectResult<Decorator> | undefined;
|
|
45
45
|
analyze(clazz: ClassDeclaration, decorator: Readonly<Decorator>): AnalysisOutput<PipeHandlerData>;
|
|
46
46
|
symbol(node: ClassDeclaration, analysis: Readonly<PipeHandlerData>): PipeSymbol;
|
|
@@ -15,7 +15,10 @@ import { ExtendedTemplateDiagnosticName } from '../../../../ngtsc/diagnostics';
|
|
|
15
15
|
* @publicApi
|
|
16
16
|
*/
|
|
17
17
|
export interface LegacyNgcOptions {
|
|
18
|
-
/**
|
|
18
|
+
/**
|
|
19
|
+
* generate all possible generated files
|
|
20
|
+
* @deprecated This option is not used anymore.
|
|
21
|
+
*/
|
|
19
22
|
allowEmptyCodegenFiles?: boolean;
|
|
20
23
|
/**
|
|
21
24
|
* Whether to type check the entire template.
|
|
File without changes
|