@zenithbuild/bundler 0.5.0-beta.2.9 → 0.6.2
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 +5 -0
- package/package.json +4 -4
- package/target/release/zenith-bundler +0 -0
package/README.md
CHANGED
|
@@ -5,6 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Zero-Cost Abstraction Bundler for the Zenith Framework.
|
|
7
7
|
|
|
8
|
+
## Canonical Docs
|
|
9
|
+
|
|
10
|
+
- Bundler contract: `../zenith-docs/documentation/contracts/bundler-contract.md`
|
|
11
|
+
- Script boundary contract: `../zenith-docs/documentation/contracts/script-boundary.md`
|
|
12
|
+
|
|
8
13
|
## Overview
|
|
9
14
|
|
|
10
15
|
The Zenith Bundler provides capability-based runtime chunking, CSS pruning, and deferred hydration for optimal production builds. Instead of shipping a monolithic runtime, it selectively includes only the capabilities used by each page.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zenithbuild/bundler",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.2",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "cargo build --release",
|
|
6
6
|
"contract:deps": "node dependency_contract.spec.js",
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"LICENSE"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@zenithbuild/router": "0.
|
|
29
|
-
"@zenithbuild/runtime": "0.
|
|
28
|
+
"@zenithbuild/router": "0.6.2",
|
|
29
|
+
"@zenithbuild/runtime": "0.6.2",
|
|
30
30
|
"chokidar": "^5.0.0",
|
|
31
31
|
"esbuild": "^0.27.3",
|
|
32
32
|
"express": "^4.21.2",
|
|
@@ -35,4 +35,4 @@
|
|
|
35
35
|
},
|
|
36
36
|
"type": "module",
|
|
37
37
|
"private": false
|
|
38
|
-
}
|
|
38
|
+
}
|
|
Binary file
|