@neuralfog/elemix-analyzer 0.9.0-dev.19 → 0.9.0-dev.21

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 +21 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -8,6 +8,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/) when it s
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.21] - 2026-07-14
12
+
13
+ ### Added
14
+
15
+ - Neovim editor extension
16
+ - Vscode editor extension
17
+
18
+ ### Changed
19
+
20
+ - Formatter is configured from `elemix.toml` (`[formatter]`) this includes editor extensions
21
+
22
+ ### Fixed
23
+
24
+ - Vite plugin now compiles a file whose only hint is `// #shadow`
25
+
26
+ ## [0.9.0-dev.20] - 2026-07-11
27
+
28
+ ### Fixed
29
+
30
+ - Storybook: `elemixDecorator` no longer pre-mounts the story into `#storybook-root`; it renders into a detached host that Storybook mounts itself. Under the Vitest runner the canvas is a per-test element, so the old pre-mount left the component connected to the wrong tree and a subsequent move disconnected it - tearing down its reactive scopes, so interactions stopped updating the DOM
31
+
11
32
  ## [0.9.0-dev.19] - 2026-07-11
12
33
 
13
34
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neuralfog/elemix-analyzer",
3
- "version": "0.9.0-dev.19",
3
+ "version": "0.9.0-dev.21",
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.19",
23
- "@neuralfog/elemix-analyzer-linux-arm64": "0.9.0-dev.19",
24
- "@neuralfog/elemix-analyzer-darwin-x64": "0.9.0-dev.19",
25
- "@neuralfog/elemix-analyzer-darwin-arm64": "0.9.0-dev.19",
26
- "@neuralfog/elemix-analyzer-win32-x64": "0.9.0-dev.19",
27
- "@neuralfog/elemix-analyzer-win32-arm64": "0.9.0-dev.19"
22
+ "@neuralfog/elemix-analyzer-linux-x64": "0.9.0-dev.21",
23
+ "@neuralfog/elemix-analyzer-linux-arm64": "0.9.0-dev.21",
24
+ "@neuralfog/elemix-analyzer-darwin-x64": "0.9.0-dev.21",
25
+ "@neuralfog/elemix-analyzer-darwin-arm64": "0.9.0-dev.21",
26
+ "@neuralfog/elemix-analyzer-win32-x64": "0.9.0-dev.21",
27
+ "@neuralfog/elemix-analyzer-win32-arm64": "0.9.0-dev.21"
28
28
  }
29
29
  }