what-framework 0.5.4 → 0.5.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/README.md +1 -1
- package/package.json +8 -8
- package/src/server.js +4 -1
package/README.md
CHANGED
|
@@ -161,7 +161,7 @@ export default defineConfig({
|
|
|
161
161
|
## Links
|
|
162
162
|
|
|
163
163
|
- [Documentation](https://whatfw.com)
|
|
164
|
-
- [GitHub](https://github.com/
|
|
164
|
+
- [GitHub](https://github.com/CelsianJs/whatfw)
|
|
165
165
|
- [Benchmarks](https://benchmarks.whatfw.com)
|
|
166
166
|
- [React Compat](https://react.whatfw.com) -- use 90+ React libraries with What
|
|
167
167
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "what-framework",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.5",
|
|
4
4
|
"description": "The closest framework to vanilla JS — signals, components, islands, SSR",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -54,20 +54,20 @@
|
|
|
54
54
|
"router",
|
|
55
55
|
"components"
|
|
56
56
|
],
|
|
57
|
-
"author": "",
|
|
57
|
+
"author": "ZVN DEV (https://zvndev.com)",
|
|
58
58
|
"license": "MIT",
|
|
59
59
|
"repository": {
|
|
60
60
|
"type": "git",
|
|
61
|
-
"url": "https://github.com/
|
|
61
|
+
"url": "https://github.com/CelsianJs/whatfw"
|
|
62
62
|
},
|
|
63
63
|
"bugs": {
|
|
64
|
-
"url": "https://github.com/
|
|
64
|
+
"url": "https://github.com/CelsianJs/whatfw/issues"
|
|
65
65
|
},
|
|
66
66
|
"homepage": "https://whatfw.com",
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"what-core": "^0.5.
|
|
69
|
-
"what-router": "^0.5.
|
|
70
|
-
"what-server": "^0.5.
|
|
71
|
-
"what-compiler": "^0.5.
|
|
68
|
+
"what-core": "^0.5.5",
|
|
69
|
+
"what-router": "^0.5.5",
|
|
70
|
+
"what-server": "^0.5.5",
|
|
71
|
+
"what-compiler": "^0.5.5"
|
|
72
72
|
}
|
|
73
73
|
}
|
package/src/server.js
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
// What Framework - Server
|
|
2
2
|
// Re-exports from server package (SSR, islands, streaming, actions)
|
|
3
|
+
//
|
|
4
|
+
// what-server main entry re-exports all action + CSRF functions.
|
|
5
|
+
// We avoid `export * from 'what-server/actions'` to prevent duplicate-name
|
|
6
|
+
// ambiguity with the main entry's star export.
|
|
3
7
|
|
|
4
8
|
export * from 'what-server';
|
|
5
9
|
export * from 'what-server/islands';
|
|
6
|
-
export * from 'what-server/actions';
|