rollipop 0.1.0-dev.20260424074146 → 1.0.0-alpha.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,39 @@
1
1
  # rollipop
2
2
 
3
+ ## 1.0.0-alpha.21
4
+
5
+ ### Minor Changes
6
+
7
+ - 14c92f6: Add `envFile` configuration option for customizing the basename used to resolve environment files. Defaults to `.env`; the loader still looks for `${envFile}`, `${envFile}.local`, `${envFile}.[mode]`, and `${envFile}.[mode].local`. Set it to a custom basename such as `.rollipop-env` to opt out of the default `.env` naming.
8
+
9
+ ### Patch Changes
10
+
11
+ - e45aedd: Add `@rollipop/jest-preset` — a jest preset and transformer that runs your tests through rollipop's rust-side transform pipeline.
12
+ - 9d18670: Expose Flow config for the native transform pipeline.
13
+ - 7934e0d: support non-image assets without dimensions
14
+ - 757756b: resolve React Native package alias fields by default
15
+ - 3e58d68: bump `@rollipop/rolldown` to 1.0.5
16
+
17
+ ## 0.1.0-alpha.20
18
+
19
+ ### Patch Changes
20
+
21
+ - d6e10db: bump @rollipop/rolldown to 1.0.2
22
+ - 140902b: impl @rollipop/plugin-module-federation
23
+
24
+ ## 0.1.0-alpha.19
25
+
26
+ ### Patch Changes
27
+
28
+ - a54c414: emit sourcemap sources relative to project root
29
+ - 419aa29: bump @rollipop/rolldown to 1.0.1
30
+
31
+ ## 0.1.0-alpha.18
32
+
33
+ ### Patch Changes
34
+
35
+ - fa83644: trigger publish
36
+
3
37
  ## 0.1.0-alpha.17
4
38
 
5
39
  ### Patch Changes
@@ -16,11 +50,11 @@
16
50
 
17
51
  ```ts
18
52
  // Before
19
- import { BuiltinPlugins } from 'rollipop';
53
+ import { BuiltinPlugins } from "rollipop";
20
54
  plugins: [BuiltinPlugins.worklets()];
21
55
 
22
56
  // After
23
- import { worklets } from 'rollipop/plugins';
57
+ import { worklets } from "rollipop/plugins";
24
58
  plugins: [worklets()];
25
59
  ```
26
60