@neuralfog/elemix-analyzer 0.9.0-dev.13 → 0.9.0-dev.15

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +18 -1
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -3,11 +3,28 @@
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.15] - 2026-07-09
12
+
13
+ ### Changed
14
+
15
+ - Compiler/Runtime: every runtime function the compiled output imports is now `$__` prefixed (`$__template`, `$__setText`, `$__state` etc) so it can't clash with a user's own module-scope names
16
+
17
+ ## [0.9.0-dev.14] - 2026-07-08
18
+
19
+ ### Added
20
+
21
+ - Runtime: new `match` directive - exhaustive pattern matching for templates. Works on string unions, enums, and tagged object unions (each branch gets the narrowed value)
22
+ - Analyzer: flags a missing case, a wrong case, or a non-finite value (like a plain `string`). Use `choose` for open conditions
23
+
24
+ ### Changed
25
+
26
+ - Compiler: primitive `#state` backing fields are now prefixed (`#__count`) so they can't clash with your own private properties
27
+
11
28
  ## [0.9.0-dev.13] - 2026-07-07
12
29
 
13
30
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neuralfog/elemix-analyzer",
3
- "version": "0.9.0-dev.13",
3
+ "version": "0.9.0-dev.15",
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.13",
23
- "@neuralfog/elemix-analyzer-linux-arm64": "0.9.0-dev.13",
24
- "@neuralfog/elemix-analyzer-darwin-x64": "0.9.0-dev.13",
25
- "@neuralfog/elemix-analyzer-darwin-arm64": "0.9.0-dev.13",
26
- "@neuralfog/elemix-analyzer-win32-x64": "0.9.0-dev.13",
27
- "@neuralfog/elemix-analyzer-win32-arm64": "0.9.0-dev.13"
22
+ "@neuralfog/elemix-analyzer-linux-x64": "0.9.0-dev.15",
23
+ "@neuralfog/elemix-analyzer-linux-arm64": "0.9.0-dev.15",
24
+ "@neuralfog/elemix-analyzer-darwin-x64": "0.9.0-dev.15",
25
+ "@neuralfog/elemix-analyzer-darwin-arm64": "0.9.0-dev.15",
26
+ "@neuralfog/elemix-analyzer-win32-x64": "0.9.0-dev.15",
27
+ "@neuralfog/elemix-analyzer-win32-arm64": "0.9.0-dev.15"
28
28
  }
29
29
  }