@neuralfog/elemix-analyzer 0.9.0-dev.10 → 0.9.0-dev.12
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 +12 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
|
|
|
8
8
|
> The [Roadmap](https://github.com/neuralfog/elemix/blob/main/ROADMAP.md) is the full
|
|
9
9
|
> log of development.
|
|
10
10
|
|
|
11
|
+
## [0.9.0-dev.12] - 2026-06-30
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
|
|
15
|
+
- Runtime: custom events (`@my-event`) now work; `_event` falls back to `addEventListener` when there is no `on*` property
|
|
16
|
+
|
|
17
|
+
## [0.9.0-dev.11] - 2026-06-30
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
|
|
21
|
+
- Compiler: multi-root conditional branches now render every root (only the first was kept before)
|
|
22
|
+
|
|
11
23
|
## [0.9.0-dev.10] - 2026-06-30
|
|
12
24
|
|
|
13
25
|
### Fixed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neuralfog/elemix-analyzer",
|
|
3
|
-
"version": "0.9.0-dev.
|
|
3
|
+
"version": "0.9.0-dev.12",
|
|
4
4
|
"description": "Template prop typechecker for Elemix (ec-analyzer)",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "brownhounds",
|
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
"CHANGELOG.md"
|
|
20
20
|
],
|
|
21
21
|
"optionalDependencies": {
|
|
22
|
-
"@neuralfog/elemix-analyzer-linux-x64": "0.9.0-dev.
|
|
23
|
-
"@neuralfog/elemix-analyzer-linux-arm64": "0.9.0-dev.
|
|
24
|
-
"@neuralfog/elemix-analyzer-darwin-x64": "0.9.0-dev.
|
|
25
|
-
"@neuralfog/elemix-analyzer-darwin-arm64": "0.9.0-dev.
|
|
26
|
-
"@neuralfog/elemix-analyzer-win32-x64": "0.9.0-dev.
|
|
27
|
-
"@neuralfog/elemix-analyzer-win32-arm64": "0.9.0-dev.
|
|
22
|
+
"@neuralfog/elemix-analyzer-linux-x64": "0.9.0-dev.12",
|
|
23
|
+
"@neuralfog/elemix-analyzer-linux-arm64": "0.9.0-dev.12",
|
|
24
|
+
"@neuralfog/elemix-analyzer-darwin-x64": "0.9.0-dev.12",
|
|
25
|
+
"@neuralfog/elemix-analyzer-darwin-arm64": "0.9.0-dev.12",
|
|
26
|
+
"@neuralfog/elemix-analyzer-win32-x64": "0.9.0-dev.12",
|
|
27
|
+
"@neuralfog/elemix-analyzer-win32-arm64": "0.9.0-dev.12"
|
|
28
28
|
}
|
|
29
29
|
}
|