@neuralfog/elemix-template-formatter 0.9.0-dev.17 → 0.9.0-dev.18
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 +15 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,21 @@ 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.18] - 2026-07-10
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- Free-standing templates: a `tpl` outside a component now compiles to an inline builder
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- Updated dependencies to their latest versions and TypeScript 7
|
|
20
|
+
- Updated the Rust toolchain and crate dependencies
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
|
|
24
|
+
- Storybook: `ElemixStory` now exposes every property of the underlying story type (`play`, `beforeEach`, `tags`, ...) instead of a hand-picked subset; removed the dead `setup` hook (`beforeRender`/`afterRender` remain)
|
|
25
|
+
|
|
11
26
|
## [0.9.0-dev.17] - 2026-07-10
|
|
12
27
|
|
|
13
28
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neuralfog/elemix-template-formatter",
|
|
3
|
-
"version": "0.9.0-dev.
|
|
3
|
+
"version": "0.9.0-dev.18",
|
|
4
4
|
"description": "HTML template formatter for Elemix tpl`` literals (etf)",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "brownhounds",
|
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
"CHANGELOG.md"
|
|
20
20
|
],
|
|
21
21
|
"optionalDependencies": {
|
|
22
|
-
"@neuralfog/elemix-template-formatter-linux-x64": "0.9.0-dev.
|
|
23
|
-
"@neuralfog/elemix-template-formatter-linux-arm64": "0.9.0-dev.
|
|
24
|
-
"@neuralfog/elemix-template-formatter-darwin-x64": "0.9.0-dev.
|
|
25
|
-
"@neuralfog/elemix-template-formatter-darwin-arm64": "0.9.0-dev.
|
|
26
|
-
"@neuralfog/elemix-template-formatter-win32-x64": "0.9.0-dev.
|
|
27
|
-
"@neuralfog/elemix-template-formatter-win32-arm64": "0.9.0-dev.
|
|
22
|
+
"@neuralfog/elemix-template-formatter-linux-x64": "0.9.0-dev.18",
|
|
23
|
+
"@neuralfog/elemix-template-formatter-linux-arm64": "0.9.0-dev.18",
|
|
24
|
+
"@neuralfog/elemix-template-formatter-darwin-x64": "0.9.0-dev.18",
|
|
25
|
+
"@neuralfog/elemix-template-formatter-darwin-arm64": "0.9.0-dev.18",
|
|
26
|
+
"@neuralfog/elemix-template-formatter-win32-x64": "0.9.0-dev.18",
|
|
27
|
+
"@neuralfog/elemix-template-formatter-win32-arm64": "0.9.0-dev.18"
|
|
28
28
|
}
|
|
29
29
|
}
|