@fictjs/ssr 0.16.0 → 0.17.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/README.md +2 -2
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -57,7 +57,7 @@ Fict SSR adopts a **Resumability** architecture, which is fundamentally differen
|
|
|
57
57
|
## Installation
|
|
58
58
|
|
|
59
59
|
```bash
|
|
60
|
-
pnpm add @fictjs/ssr
|
|
60
|
+
pnpm add fict @fictjs/ssr
|
|
61
61
|
```
|
|
62
62
|
|
|
63
63
|
## Quick Start
|
|
@@ -89,7 +89,7 @@ const html = renderToString(() => <App />, {
|
|
|
89
89
|
|
|
90
90
|
```typescript
|
|
91
91
|
// entry-client.tsx
|
|
92
|
-
import { installResumableLoader } from '
|
|
92
|
+
import { installResumableLoader } from 'fict/loader'
|
|
93
93
|
|
|
94
94
|
// Load manifest (production)
|
|
95
95
|
async function loadManifest() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fictjs/ssr",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.17.1",
|
|
4
4
|
"description": "Fict server-side rendering",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -27,10 +27,11 @@
|
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"linkedom": "^0.18.12",
|
|
30
|
-
"@fictjs/runtime": "0.
|
|
30
|
+
"@fictjs/runtime": "0.17.1"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"tsup": "^8.5.1"
|
|
33
|
+
"tsup": "^8.5.1",
|
|
34
|
+
"fict": "0.17.1"
|
|
34
35
|
},
|
|
35
36
|
"keywords": [
|
|
36
37
|
"fict",
|