@adukiorg/anza 0.2.3 → 0.2.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/CHANGELOG.md +19 -0
- package/bin/anza/anza-windows-x64.exe +0 -0
- package/package.json +6 -2
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,24 @@ Versioning follows [Semantic Versioning](https://semver.org/).
|
|
|
16
17
|
|
|
17
18
|
---
|
|
18
19
|
|
|
20
|
+
## [0.2.5] — 2026-06-09
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
|
|
24
|
+
- Add `./package.json` export to `@adukiorg/anza` so `npm create` resolver works
|
|
25
|
+
- Fix `@adukiorg/create-anza` fallback resolution for local development
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
## [0.2.4] — 2026-06-09
|
|
30
|
+
|
|
31
|
+
### Added
|
|
32
|
+
|
|
33
|
+
- **`@adukiorg/create-anza`** package for `npm create @adukiorg/anza <name>`
|
|
34
|
+
- `./bin/create` export added to `@adukiorg/anza` for programmatic scaffold access
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
19
38
|
## [0.2.3] — 2026-06-09
|
|
20
39
|
|
|
21
40
|
### 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.5",
|
|
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,7 +96,11 @@
|
|
|
96
96
|
"./theme": {
|
|
97
97
|
"types": "./types/core/theme/index.d.ts",
|
|
98
98
|
"default": "./src/core/theme/index.js"
|
|
99
|
-
}
|
|
99
|
+
},
|
|
100
|
+
"./bin/create": {
|
|
101
|
+
"default": "./bin/create/index.js"
|
|
102
|
+
},
|
|
103
|
+
"./package.json": "./package.json"
|
|
100
104
|
},
|
|
101
105
|
"scripts": {
|
|
102
106
|
"test": "npx @web/test-runner",
|