@neuralfog/elemix-analyzer 0.9.0-dev.8 → 0.9.0-dev.9
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 +6 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,12 @@ 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.9] - 2026-06-30
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
|
|
15
|
+
- Compiler: a `template()` method now lowers to `view()` like the `template = () =>` arrow field; previously only the arrow field was compiled, so the method form was left uncompiled and threw at runtime
|
|
16
|
+
|
|
11
17
|
## [0.9.0-dev.8] - 2026-06-24
|
|
12
18
|
|
|
13
19
|
### Added
|
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.9",
|
|
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.9",
|
|
23
|
+
"@neuralfog/elemix-analyzer-linux-arm64": "0.9.0-dev.9",
|
|
24
|
+
"@neuralfog/elemix-analyzer-darwin-x64": "0.9.0-dev.9",
|
|
25
|
+
"@neuralfog/elemix-analyzer-darwin-arm64": "0.9.0-dev.9",
|
|
26
|
+
"@neuralfog/elemix-analyzer-win32-x64": "0.9.0-dev.9",
|
|
27
|
+
"@neuralfog/elemix-analyzer-win32-arm64": "0.9.0-dev.9"
|
|
28
28
|
}
|
|
29
29
|
}
|