@angular/compiler-cli
Advanced tools
Comparing version
@@ -458,3 +458,3 @@ | ||
import semver from "semver"; | ||
var PLACEHOLDER_VERSION = "20.1.4"; | ||
var PLACEHOLDER_VERSION = "20.1.5"; | ||
function wrapReference(wrapped) { | ||
@@ -461,0 +461,0 @@ return { value: wrapped, type: wrapped }; |
@@ -31,3 +31,3 @@ | ||
readConfiguration | ||
} from "./chunk-WX5V4QZA.js"; | ||
} from "./chunk-JRJZMY3G.js"; | ||
import { | ||
@@ -41,3 +41,3 @@ ConsoleLogger, | ||
getInitializerApiJitTransform | ||
} from "./chunk-NA3RDKZL.js"; | ||
} from "./chunk-6SNDDF7J.js"; | ||
import { | ||
@@ -51,3 +51,3 @@ ActivePerfRecorder, | ||
ngErrorCode | ||
} from "./chunk-GXMJGI7A.js"; | ||
} from "./chunk-RO5VAPEI.js"; | ||
import "./chunk-I2BHWRAU.js"; | ||
@@ -83,3 +83,3 @@ import { | ||
import { Version } from "@angular/compiler"; | ||
var VERSION = new Version("20.1.4"); | ||
var VERSION = new Version("20.1.5"); | ||
@@ -86,0 +86,0 @@ // packages/compiler-cli/private/tooling.js |
@@ -16,3 +16,3 @@ | ||
reflectObjectLiteral | ||
} from "../chunk-GXMJGI7A.js"; | ||
} from "../chunk-RO5VAPEI.js"; | ||
import "../chunk-I2BHWRAU.js"; | ||
@@ -19,0 +19,0 @@ import "../chunk-GWZQLAGK.js"; |
@@ -7,4 +7,4 @@ | ||
angularJitApplicationTransform | ||
} from "../chunk-NA3RDKZL.js"; | ||
import "../chunk-GXMJGI7A.js"; | ||
} from "../chunk-6SNDDF7J.js"; | ||
import "../chunk-RO5VAPEI.js"; | ||
import "../chunk-I2BHWRAU.js"; | ||
@@ -11,0 +11,0 @@ import "../chunk-GWZQLAGK.js"; |
@@ -9,8 +9,8 @@ #!/usr/bin/env node | ||
readCommandLineAndConfiguration | ||
} from "../../chunk-JWGODKML.js"; | ||
} from "../../chunk-XRIKE6FE.js"; | ||
import { | ||
EmitFlags | ||
} from "../../chunk-WX5V4QZA.js"; | ||
import "../../chunk-NA3RDKZL.js"; | ||
import "../../chunk-GXMJGI7A.js"; | ||
} from "../../chunk-JRJZMY3G.js"; | ||
import "../../chunk-6SNDDF7J.js"; | ||
import "../../chunk-RO5VAPEI.js"; | ||
import "../../chunk-I2BHWRAU.js"; | ||
@@ -17,0 +17,0 @@ import { |
@@ -8,6 +8,6 @@ #!/usr/bin/env node | ||
main | ||
} from "../../chunk-JWGODKML.js"; | ||
import "../../chunk-WX5V4QZA.js"; | ||
import "../../chunk-NA3RDKZL.js"; | ||
import "../../chunk-GXMJGI7A.js"; | ||
} from "../../chunk-XRIKE6FE.js"; | ||
import "../../chunk-JRJZMY3G.js"; | ||
import "../../chunk-6SNDDF7J.js"; | ||
import "../../chunk-RO5VAPEI.js"; | ||
import "../../chunk-I2BHWRAU.js"; | ||
@@ -14,0 +14,0 @@ import { |
@@ -10,3 +10,3 @@ /** | ||
import { AstObject, AstValue } from '../../ast/ast_value'; | ||
export declare const PLACEHOLDER_VERSION = "20.1.4"; | ||
export declare const PLACEHOLDER_VERSION = "20.1.5"; | ||
export declare function wrapReference<TExpression>(wrapped: o.WrappedNodeExpr<TExpression>): R3Reference; | ||
@@ -13,0 +13,0 @@ /** |
{ | ||
"name": "@angular/compiler-cli", | ||
"version": "20.1.4", | ||
"version": "20.1.5", | ||
"description": "Angular - the compiler CLI for Node.js", | ||
@@ -51,3 +51,3 @@ "typings": "index.d.ts", | ||
"peerDependencies": { | ||
"@angular/compiler": "20.1.4", | ||
"@angular/compiler": "20.1.5", | ||
"typescript": ">=5.8 <5.9" | ||
@@ -54,0 +54,0 @@ }, |
@@ -39,2 +39,6 @@ /** | ||
isPoisoned: boolean; | ||
/** | ||
* Directives that have been set on the host of the scope. | ||
*/ | ||
directivesOnHost: DirectiveMeta[] | null; | ||
} | ||
@@ -63,3 +67,3 @@ /** | ||
*/ | ||
getTypeCheckScope(node: ClassDeclaration): TypeCheckScope; | ||
getTypeCheckScope(ref: Reference<ClassDeclaration>): TypeCheckScope; | ||
getTypeCheckDirectiveMetadata(ref: Reference<ClassDeclaration>): DirectiveMeta | null; | ||
@@ -69,2 +73,3 @@ private applyExplicitlyDeferredFlag; | ||
private getSelectorlessMatcher; | ||
private combineWithHostDirectives; | ||
} |
@@ -11,3 +11,3 @@ /** | ||
import { Reference } from '../../imports'; | ||
import { PipeMeta } from '../../metadata'; | ||
import { DirectiveMeta, PipeMeta } from '../../metadata'; | ||
import { ClassDeclaration } from '../../reflection'; | ||
@@ -34,2 +34,4 @@ import { SourceMapping, TypeCheckableDirectiveMeta } from './api'; | ||
node: TmplAstHostElement; | ||
/** Directives present on the host element. */ | ||
directives: DirectiveMeta[]; | ||
/** Describes the source of the host bindings. Used for mapping errors back. */ | ||
@@ -36,0 +38,0 @@ sourceMapping: SourceMapping; |
@@ -8,3 +8,3 @@ /** | ||
*/ | ||
import { BoundTarget, SchemaMetadata, TmplAstElement, TmplAstForLoopBlock, TmplAstIfBlockBranch, TmplAstLetDeclaration, TmplAstNode, TmplAstReference, TmplAstTemplate, TmplAstVariable, TmplAstHostElement, TmplAstComponent, TmplAstDirective } from '@angular/compiler'; | ||
import { BoundTarget, SchemaMetadata, TmplAstBoundAttribute, TmplAstBoundEvent, TmplAstElement, TmplAstForLoopBlock, TmplAstIfBlockBranch, TmplAstLetDeclaration, TmplAstNode, TmplAstReference, TmplAstTemplate, TmplAstVariable, TmplAstHostElement, TmplAstComponent, TmplAstDirective, DirectiveOwner } from '@angular/compiler'; | ||
import ts from 'typescript'; | ||
@@ -115,4 +115,6 @@ import { Reference } from '../../imports'; | ||
private node; | ||
private inputs; | ||
private outputs; | ||
private dir; | ||
constructor(tcb: Context, scope: Scope, node: TmplAstTemplate | TmplAstElement | TmplAstComponent | TmplAstDirective, dir: TypeCheckableDirectiveMeta); | ||
constructor(tcb: Context, scope: Scope, node: DirectiveOwner, inputs: TmplAstBoundAttribute[] | null, outputs: TmplAstBoundEvent[], dir: TypeCheckableDirectiveMeta); | ||
get optional(): boolean; | ||
@@ -306,2 +308,3 @@ execute(): null; | ||
private appendDeferredTriggers; | ||
private appendHostElement; | ||
private validateReferenceBasedDeferredTrigger; | ||
@@ -308,0 +311,0 @@ /** Reports a diagnostic if there are any `@let` declarations that conflict with a node. */ |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
2004505
0.1%48569
0.09%1
Infinity%