@angular/ssr 22.1.6 → 22.1.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.
- package/fesm2022/_validation-chunk.mjs.map +1 -1
- package/fesm2022/node.mjs +6 -4
- package/fesm2022/node.mjs.map +1 -1
- package/fesm2022/ssr.mjs +3 -0
- package/fesm2022/ssr.mjs.map +1 -1
- package/package.json +7 -7
- package/third_party/beasties/THIRD_PARTY_LICENSES.txt +1 -1
- package/third_party/beasties/index.js +1 -1
- package/third_party/beasties/index.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/ssr",
|
|
3
|
-
"version": "22.1.
|
|
3
|
+
"version": "22.1.8",
|
|
4
4
|
"description": "Angular server side rendering utilities",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -37,12 +37,12 @@
|
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@angular-devkit/schematics": "workspace:*",
|
|
40
|
-
"@angular/common": "22.1.
|
|
41
|
-
"@angular/compiler": "22.1.
|
|
42
|
-
"@angular/core": "22.1.
|
|
43
|
-
"@angular/platform-browser": "22.1.
|
|
44
|
-
"@angular/platform-server": "22.1.
|
|
45
|
-
"@angular/router": "22.1.
|
|
40
|
+
"@angular/common": "22.1.6",
|
|
41
|
+
"@angular/compiler": "22.1.6",
|
|
42
|
+
"@angular/core": "22.1.6",
|
|
43
|
+
"@angular/platform-browser": "22.1.6",
|
|
44
|
+
"@angular/platform-server": "22.1.6",
|
|
45
|
+
"@angular/router": "22.1.6",
|
|
46
46
|
"@schematics/angular": "workspace:*",
|
|
47
47
|
"beasties": "0.4.3"
|
|
48
48
|
},
|
|
@@ -478,7 +478,7 @@ License: MIT
|
|
|
478
478
|
|
|
479
479
|
The MIT License (MIT)
|
|
480
480
|
|
|
481
|
-
Copyright 2013 Andrey Sitnik <andrey@sitnik.
|
|
481
|
+
Copyright 2013 Andrey Sitnik <andrey@sitnik.es>
|
|
482
482
|
|
|
483
483
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
484
484
|
this software and associated documentation files (the "Software"), to deal in
|
|
@@ -6113,7 +6113,7 @@ function requireSafeParser () {
|
|
|
6113
6113
|
for (nextStart = colon - 1; nextStart >= 0; nextStart--) {
|
|
6114
6114
|
if (tokens[nextStart][0] === 'word') break
|
|
6115
6115
|
}
|
|
6116
|
-
if (nextStart
|
|
6116
|
+
if (nextStart <= 0) return
|
|
6117
6117
|
|
|
6118
6118
|
for (prevEnd = nextStart - 1; prevEnd >= 0; prevEnd--) {
|
|
6119
6119
|
if (tokens[prevEnd][0] !== 'space') {
|