@adukiorg/anza 0.3.5 → 0.3.7

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,22 @@ Versioning follows [Semantic Versioning](https://semver.org/).
17
17
 
18
18
  ---
19
19
 
20
+ ## [0.3.7] — 2026-06-13
21
+
22
+ ### Changed
23
+
24
+ - Updated README and package descriptions to clarify the "instant" build step.
25
+
26
+ ---
27
+
28
+ ## [0.3.6] — 2026-06-13
29
+
30
+ ### Fixed
31
+
32
+ - Resolved NPM publish collision for the watcher hotfix.
33
+
34
+ ---
35
+
20
36
  ## [0.3.5] — 2026-06-13
21
37
 
22
38
  ### Changed
package/README.md CHANGED
@@ -53,7 +53,7 @@ npm install
53
53
  npm run dev
54
54
  ```
55
55
 
56
- That is it. Your browser loads `dist/app.js` natively. No webpack. No vite. No `npm run build` that takes forty seconds.
56
+ That is it. Your browser loads `dist/app.js` natively. No webpack. No vite. No `npm run build` that takes forty seconds — our Rust CLI compiles your app in milliseconds.
57
57
 
58
58
  ---
59
59
 
@@ -92,7 +92,7 @@ Use it:
92
92
  <user-card name="Alice" active></user-card>
93
93
  ```
94
94
 
95
- No build step. No JSX transform. No virtual DOM reconciliation. The browser parses the template, creates the DOM, and updates it when props change. Because that is literally what browsers are for.
95
+ No complex build pipeline. No JSX transform. No virtual DOM reconciliation. The browser parses the template, creates the DOM, and updates it when props change. Because that is literally what browsers are for.
96
96
 
97
97
  ### A Route
98
98
 
@@ -156,7 +156,7 @@ You own `src/tokens/` after scaffolding. Change a primitive, every component upd
156
156
 
157
157
  **Native first.** If the browser has an API for it, we use it. If it doesn't, we build the smallest possible wrapper. We do not reimplement the browser inside JavaScript.
158
158
 
159
- **Zero build.** The browser resolves ESM imports natively. Our Rust CLI copies the files you use into `dist/`. That is the whole build step. No bundling. No tree-shaking algorithms. The browser is single-threaded anyway.
159
+ **Instant builds.** The browser resolves ESM imports natively. Our Rust CLI copies the files you use into `dist/` in milliseconds. That is the whole build step. No bundling. No tree-shaking algorithms. The browser is single-threaded anyway.
160
160
 
161
161
  **You own your code.** Scaffolding copies starter files into `src/`. The library never touches them again. No hidden configs. No magic globals. No runtime injection of framework internals.
162
162
 
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@adukiorg/anza",
3
- "version": "0.3.5",
4
- "description": "Anza web platform library — reactive state, networking, offline, animations, custom elements. Zero build step. Pure browser ESM.",
3
+ "version": "0.3.7",
4
+ "description": "Anza web platform library — reactive state, networking, offline, animations, custom elements. Instant build step. Pure browser ESM.",
5
5
  "author": "fescii",
6
6
  "license": "MIT",
7
7
  "type": "module",