@adukiorg/anza 0.2.2 → 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
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.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
|
+
|
|
29
|
+
## [0.2.3] — 2026-06-09
|
|
30
|
+
|
|
31
|
+
### Fixed
|
|
32
|
+
|
|
33
|
+
- CI release workflow artifact naming to prevent binary overwrites
|
|
34
|
+
- Windows runner shell compatibility (`shell: bash`)
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
19
38
|
## [0.2.2] — 2026-06-09
|
|
20
39
|
|
|
21
40
|
### Added
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
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": {
|