@angular/ssr 20.1.0-next.2 → 20.1.0-next.3
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/node.mjs +2 -0
- package/fesm2022/node.mjs.map +1 -1
- package/fesm2022/ssr.mjs +11 -15
- package/fesm2022/ssr.mjs.map +1 -1
- package/index.d.ts +3 -9
- package/package.json +7 -7
- package/third_party/beasties/index.js +1 -1
- package/third_party/beasties/index.js.map +1 -1
package/index.d.ts
CHANGED
|
@@ -537,22 +537,16 @@ interface AngularAppManifest {
|
|
|
537
537
|
* Maps entry-point names to their corresponding browser bundles and loading strategies.
|
|
538
538
|
*
|
|
539
539
|
* - **Key**: The entry-point name, typically the value of `ɵentryName`.
|
|
540
|
-
* - **Value**:
|
|
541
|
-
* - `path`: The filename or URL of the associated JavaScript bundle to preload.
|
|
542
|
-
* - `dynamicImport`: A boolean indicating whether the bundle is loaded via a dynamic `import()`.
|
|
543
|
-
* If `true`, the bundle is lazily loaded, impacting its preloading behavior.
|
|
540
|
+
* - **Value**: A readonly array of JavaScript bundle paths or `undefined` if no bundles are associated.
|
|
544
541
|
*
|
|
545
542
|
* ### Example
|
|
546
543
|
* ```ts
|
|
547
544
|
* {
|
|
548
|
-
* 'src/app/lazy/lazy.ts': [
|
|
545
|
+
* 'src/app/lazy/lazy.ts': ['src/app/lazy/lazy.js']
|
|
549
546
|
* }
|
|
550
547
|
* ```
|
|
551
548
|
*/
|
|
552
|
-
readonly entryPointToBrowserMapping?: Readonly<Record<string,
|
|
553
|
-
path: string;
|
|
554
|
-
dynamicImport: boolean;
|
|
555
|
-
}> | undefined>>;
|
|
549
|
+
readonly entryPointToBrowserMapping?: Readonly<Record<string, readonly string[] | undefined>>;
|
|
556
550
|
}
|
|
557
551
|
/**
|
|
558
552
|
* Sets the Angular app manifest.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/ssr",
|
|
3
|
-
"version": "20.1.0-next.
|
|
3
|
+
"version": "20.1.0-next.3",
|
|
4
4
|
"description": "Angular server side rendering utilities",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -29,12 +29,12 @@
|
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@angular-devkit/schematics": "workspace:*",
|
|
32
|
-
"@angular/common": "20.1.0-next.
|
|
33
|
-
"@angular/compiler": "20.1.0-next.
|
|
34
|
-
"@angular/core": "20.1.0-next.
|
|
35
|
-
"@angular/platform-browser": "20.1.0-next.
|
|
36
|
-
"@angular/platform-server": "20.1.0-next.
|
|
37
|
-
"@angular/router": "20.1.0-next.
|
|
32
|
+
"@angular/common": "20.1.0-next.3",
|
|
33
|
+
"@angular/compiler": "20.1.0-next.3",
|
|
34
|
+
"@angular/core": "20.1.0-next.3",
|
|
35
|
+
"@angular/platform-browser": "20.1.0-next.3",
|
|
36
|
+
"@angular/platform-server": "20.1.0-next.3",
|
|
37
|
+
"@angular/router": "20.1.0-next.3",
|
|
38
38
|
"@schematics/angular": "workspace:*"
|
|
39
39
|
},
|
|
40
40
|
"sideEffects": false,
|