@angular/compiler 19.1.4 → 19.1.5
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/fesm2022/compiler.mjs +20 -13
- package/fesm2022/compiler.mjs.map +1 -1
- package/index.d.ts +6 -3
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v19.1.
|
|
2
|
+
* @license Angular v19.1.5
|
|
3
3
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -3700,9 +3700,12 @@ export declare interface R3HmrMetadata {
|
|
|
3700
3700
|
/**
|
|
3701
3701
|
* HMR update functions cannot contain imports so any locals the generated code depends on
|
|
3702
3702
|
* (e.g. references to imports within the same file or imported symbols) have to be passed in
|
|
3703
|
-
* as function parameters. This array contains the names of
|
|
3703
|
+
* as function parameters. This array contains the names and runtime representation of the locals.
|
|
3704
3704
|
*/
|
|
3705
|
-
localDependencies:
|
|
3705
|
+
localDependencies: {
|
|
3706
|
+
name: string;
|
|
3707
|
+
runtimeRepresentation: outputAst.Expression;
|
|
3708
|
+
}[];
|
|
3706
3709
|
}
|
|
3707
3710
|
|
|
3708
3711
|
/** HMR dependency on a namespace import. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/compiler",
|
|
3
|
-
"version": "19.1.
|
|
3
|
+
"version": "19.1.5",
|
|
4
4
|
"description": "Angular - the compiler library",
|
|
5
5
|
"author": "angular",
|
|
6
6
|
"license": "MIT",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"tslib": "^2.3.0"
|
|
12
12
|
},
|
|
13
13
|
"peerDependencies": {
|
|
14
|
-
"@angular/core": "19.1.
|
|
14
|
+
"@angular/core": "19.1.5"
|
|
15
15
|
},
|
|
16
16
|
"peerDependenciesMeta": {
|
|
17
17
|
"@angular/core": {
|