@angular/compiler-cli 19.2.6 → 19.2.8

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.
@@ -7,7 +7,7 @@
7
7
  */
8
8
  import { MaybeForwardRefExpression, outputAst as o, R3DeclareDependencyMetadata, R3DependencyMetadata, R3Reference } from '@angular/compiler';
9
9
  import { AstObject, AstValue } from '../../ast/ast_value';
10
- export declare const PLACEHOLDER_VERSION = "19.2.6";
10
+ export declare const PLACEHOLDER_VERSION = "19.2.8";
11
11
  export declare function wrapReference<TExpression>(wrapped: o.WrappedNodeExpr<TExpression>): R3Reference;
12
12
  /**
13
13
  * Parses the value of an enum from the AST value's symbol name.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/compiler-cli",
3
- "version": "19.2.6",
3
+ "version": "19.2.8",
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": "19.2.6",
56
+ "@angular/compiler": "19.2.8",
57
57
  "typescript": ">=5.5 <5.9"
58
58
  },
59
59
  "repository": {
@@ -116,6 +116,8 @@ export interface DirectiveEntry extends ClassEntry {
116
116
  export interface PipeEntry extends ClassEntry {
117
117
  pipeName: string;
118
118
  isStandalone: boolean;
119
+ usage: string;
120
+ isPure: boolean;
119
121
  }
120
122
  export interface FunctionSignatureMetadata extends DocEntry {
121
123
  params: ParameterEntry[];
@@ -303,6 +303,7 @@ export interface PipeMeta {
303
303
  name: string;
304
304
  nameExpr: ts.Expression | null;
305
305
  isStandalone: boolean;
306
+ isPure: boolean;
306
307
  decorator: ts.Decorator | null;
307
308
  isExplicitlyDeferred: boolean;
308
309
  }