@styleframe/loader 2.2.0 → 2.4.0
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 +32 -0
- package/dist/index.cjs +776 -500
- package/dist/index.d.ts +11 -8
- package/dist/index.js +777 -499
- package/package.json +7 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# @styleframe/loader
|
|
2
2
|
|
|
3
|
+
## 2.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#96](https://github.com/styleframe-dev/styleframe/pull/96) [`8460f16`](https://github.com/styleframe-dev/styleframe/commit/8460f169cec1199810e9203b357dac9f2f128c56) Thanks [@alexgrozav](https://github.com/alexgrozav)! - Rename `?recipe` imports to `?ts` and add named selector export support
|
|
8
|
+
- **Breaking:** Renamed import query parameter from `?recipe` to `?ts` for styleframe files
|
|
9
|
+
- Add support for exporting named selectors alongside recipes via `?ts` imports
|
|
10
|
+
- Add `_exportName` property to `Selector` and `Recipe` types for tracking named exports
|
|
11
|
+
- Replace `c12` with `chokidar` + `jiti` for simpler, more reliable config loading
|
|
12
|
+
- Add `onError` callback to `watchConfiguration` for error reporting during file watch
|
|
13
|
+
- Add file deletion detection with `unlink` handler in watch mode
|
|
14
|
+
- Simplify `loadConfiguration` API by merging `loadConfigurationFromPath`
|
|
15
|
+
- Add comprehensive unit tests for TypeScript selector consumer
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies [[`8460f16`](https://github.com/styleframe-dev/styleframe/commit/8460f169cec1199810e9203b357dac9f2f128c56)]:
|
|
20
|
+
- @styleframe/transpiler@2.6.0
|
|
21
|
+
- @styleframe/core@2.6.0
|
|
22
|
+
|
|
23
|
+
## 2.3.0
|
|
24
|
+
|
|
25
|
+
### Minor Changes
|
|
26
|
+
|
|
27
|
+
- [#72](https://github.com/styleframe-dev/styleframe/pull/72) [`d98b650`](https://github.com/styleframe-dev/styleframe/commit/d98b65030170582ceacfabde3ba9ff7d92105389) Thanks [@alexgrozav](https://github.com/alexgrozav)! - feat: add support for .styleframe file imports
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- Updated dependencies [[`ff1a689`](https://github.com/styleframe-dev/styleframe/commit/ff1a689f36dc4294b2a7353949c6efd220451e9d), [`d98b650`](https://github.com/styleframe-dev/styleframe/commit/d98b65030170582ceacfabde3ba9ff7d92105389)]:
|
|
32
|
+
- @styleframe/transpiler@2.5.0
|
|
33
|
+
- @styleframe/core@2.5.0
|
|
34
|
+
|
|
3
35
|
## 2.2.0
|
|
4
36
|
|
|
5
37
|
### Minor Changes
|