@adukiorg/anza 0.3.1 → 0.3.3
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/CHANGELOG.md
CHANGED
|
@@ -17,6 +17,25 @@ Versioning follows [Semantic Versioning](https://semver.org/).
|
|
|
17
17
|
|
|
18
18
|
---
|
|
19
19
|
|
|
20
|
+
## [0.3.3] — 2026-06-13
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
|
|
24
|
+
- Removed `<main>` to `<dock-main>` compiler auto-alignment. Apps now use `<dock-main id="main">` natively in HTML templates.
|
|
25
|
+
- Update `boot.js` router error messages to correctly refer to `<dock-main id="main">`.
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
## [0.3.2] — 2026-06-13
|
|
30
|
+
|
|
31
|
+
### Fixed
|
|
32
|
+
|
|
33
|
+
- Update scaffolding templates to use `<dock-main>` and ES module Service Worker registration (`{ type: 'module' }`)
|
|
34
|
+
- Fix CLI watcher to properly resolve Linux `inotify` absolute paths for CSS and JS Hot Module Reloading (HMR)
|
|
35
|
+
- Improve HMR client script with SSE auto-reconnect back-off
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
20
39
|
## [0.3.1] — 2026-06-13
|
|
21
40
|
|
|
22
41
|
### Changed
|
|
Binary file
|
package/bin/anza/anza-linux-x64
CHANGED
|
Binary file
|
|
Binary file
|
package/bin/anza/anza-macos-x64
CHANGED
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
package/src/core/router/boot.js
CHANGED
|
@@ -49,8 +49,8 @@ function anchor() {
|
|
|
49
49
|
const el = document.getElementById('main');
|
|
50
50
|
if (!el) {
|
|
51
51
|
throw new Error(
|
|
52
|
-
`[Router] <main id="main"> is required but was not found in the document. ` +
|
|
53
|
-
`Ensure your HTML shell contains exactly one <main id="main"> before any scripts run.`
|
|
52
|
+
`[Router] <dock-main id="main"> is required but was not found in the document. ` +
|
|
53
|
+
`Ensure your HTML shell contains exactly one <dock-main id="main"> before any scripts run.`
|
|
54
54
|
);
|
|
55
55
|
}
|
|
56
56
|
graphRoot.ref = new WeakRef(el);
|