@angular/ssr 21.0.0-next.9 → 21.0.0-rc.1
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 +246 -407
- package/fesm2022/node.mjs.map +1 -1
- package/fesm2022/ssr.mjs +1306 -2448
- package/fesm2022/ssr.mjs.map +1 -1
- package/package.json +7 -7
- package/types/ssr.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/ssr",
|
|
3
|
-
"version": "21.0.0-
|
|
3
|
+
"version": "21.0.0-rc.1",
|
|
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": "21.0.0-
|
|
33
|
-
"@angular/compiler": "21.0.0-
|
|
34
|
-
"@angular/core": "21.0.0-
|
|
35
|
-
"@angular/platform-browser": "21.0.0-
|
|
36
|
-
"@angular/platform-server": "21.0.0-
|
|
37
|
-
"@angular/router": "21.0.0-
|
|
32
|
+
"@angular/common": "21.0.0-rc.0",
|
|
33
|
+
"@angular/compiler": "21.0.0-rc.0",
|
|
34
|
+
"@angular/core": "21.0.0-rc.0",
|
|
35
|
+
"@angular/platform-browser": "21.0.0-rc.0",
|
|
36
|
+
"@angular/platform-server": "21.0.0-rc.0",
|
|
37
|
+
"@angular/router": "21.0.0-rc.0",
|
|
38
38
|
"@schematics/angular": "workspace:*",
|
|
39
39
|
"beasties": "0.3.5"
|
|
40
40
|
},
|
package/types/ssr.d.ts
CHANGED
|
@@ -497,7 +497,7 @@ interface AngularAppEngineManifest {
|
|
|
497
497
|
* - `key`: The locale identifier (e.g., 'en', 'fr').
|
|
498
498
|
* - `value`: The url segment associated with that locale.
|
|
499
499
|
*/
|
|
500
|
-
readonly supportedLocales: Readonly<Record<string, string
|
|
500
|
+
readonly supportedLocales: Readonly<Record<string, string>>;
|
|
501
501
|
}
|
|
502
502
|
/**
|
|
503
503
|
* Manifest for a specific Angular server application, defining assets and bootstrap logic.
|