@neuralfog/elemix-analyzer 0.9.0-dev.13 → 0.9.0-dev.14
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 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,11 +3,22 @@
|
|
|
3
3
|
All notable changes to elemix and its companion packages are documented here. They
|
|
4
4
|
share one version and release together, so they share one changelog. The format
|
|
5
5
|
follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)
|
|
6
|
-
and this project adheres to [Semantic Versioning](https://semver.org/)
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/) when it suits me 😂😂😂.
|
|
7
7
|
|
|
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.14] - 2026-07-08
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- Runtime: new `match` directive - exhaustive pattern matching for templates. Works on string unions, enums, and tagged object unions (each branch gets the narrowed value)
|
|
16
|
+
- Analyzer: flags a missing case, a wrong case, or a non-finite value (like a plain `string`). Use `choose` for open conditions
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- Compiler: primitive `#state` backing fields are now prefixed (`#__count`) so they can't clash with your own private properties
|
|
21
|
+
|
|
11
22
|
## [0.9.0-dev.13] - 2026-07-07
|
|
12
23
|
|
|
13
24
|
### 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.14",
|
|
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.14",
|
|
23
|
+
"@neuralfog/elemix-analyzer-linux-arm64": "0.9.0-dev.14",
|
|
24
|
+
"@neuralfog/elemix-analyzer-darwin-x64": "0.9.0-dev.14",
|
|
25
|
+
"@neuralfog/elemix-analyzer-darwin-arm64": "0.9.0-dev.14",
|
|
26
|
+
"@neuralfog/elemix-analyzer-win32-x64": "0.9.0-dev.14",
|
|
27
|
+
"@neuralfog/elemix-analyzer-win32-arm64": "0.9.0-dev.14"
|
|
28
28
|
}
|
|
29
29
|
}
|