@adukiorg/anza 0.2.3 → 0.2.4
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 +10 -0
- package/bin/anza/anza-windows-x64.exe +0 -0
- package/package.json +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
<!-- markdownlint-disable MD024 -->
|
|
1
2
|
# Changelog
|
|
2
3
|
|
|
3
4
|
All notable changes to `@adukiorg/anza` will be documented here.
|
|
@@ -16,6 +17,15 @@ Versioning follows [Semantic Versioning](https://semver.org/).
|
|
|
16
17
|
|
|
17
18
|
---
|
|
18
19
|
|
|
20
|
+
## [0.2.4] — 2026-06-09
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
|
|
24
|
+
- **`@adukiorg/create-anza`** package for `npm create @adukiorg/anza <name>`
|
|
25
|
+
- `./bin/create` export added to `@adukiorg/anza` for programmatic scaffold access
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
19
29
|
## [0.2.3] — 2026-06-09
|
|
20
30
|
|
|
21
31
|
### Fixed
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adukiorg/anza",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"description": "Anza web platform library — reactive state, networking, offline, animations, custom elements. Zero build step. Pure browser ESM.",
|
|
5
5
|
"author": "fescii",
|
|
6
6
|
"license": "MIT",
|
|
@@ -96,6 +96,9 @@
|
|
|
96
96
|
"./theme": {
|
|
97
97
|
"types": "./types/core/theme/index.d.ts",
|
|
98
98
|
"default": "./src/core/theme/index.js"
|
|
99
|
+
},
|
|
100
|
+
"./bin/create": {
|
|
101
|
+
"default": "./bin/create/index.js"
|
|
99
102
|
}
|
|
100
103
|
},
|
|
101
104
|
"scripts": {
|