@angular/compiler-cli 18.0.2 → 18.0.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.
@@ -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 = "18.0.2";
10
+ export declare const PLACEHOLDER_VERSION = "18.0.4";
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": "18.0.2",
3
+ "version": "18.0.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.24.4",
46
+ "@babel/core": "7.24.7",
47
47
  "@jridgewell/sourcemap-codec": "^1.4.14",
48
48
  "reflect-metadata": "^0.2.0",
49
49
  "chokidar": "^3.0.0",
@@ -53,7 +53,7 @@
53
53
  "yargs": "^17.2.1"
54
54
  },
55
55
  "peerDependencies": {
56
- "@angular/compiler": "18.0.2",
56
+ "@angular/compiler": "18.0.4",
57
57
  "typescript": ">=5.4 <5.5"
58
58
  },
59
59
  "repository": {
@@ -109,6 +109,7 @@ export interface PipeEntry extends ClassEntry {
109
109
  export interface FunctionEntry extends DocEntry {
110
110
  params: ParameterEntry[];
111
111
  returnType: string;
112
+ returnDescription?: string;
112
113
  generics: GenericEntry[];
113
114
  isNewType: boolean;
114
115
  }