rollipop 0.1.0-dev.20260424074146 → 1.0.0-alpha.22
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 +47 -2
- package/dist/commands.cjs +2749 -2486
- package/dist/commands.d.cts +1 -1
- package/dist/commands.d.ts +1 -1
- package/dist/commands.js +2763 -2500
- package/dist/hmr-runtime.iife.js +11 -10
- package/dist/index.d.ts +185 -35
- package/dist/index.js +640 -362
- package/dist/runtime.cjs +2 -2
- package/dist/runtime.js +2 -2
- package/package.json +6 -19
- package/src/runtime/hmr-runtime.ts +271 -0
- package/src/runtime/react-native-core.d.ts +37 -0
- package/src/runtime/react-refresh-utils.ts +37 -0
- package/src/runtime/runtime-utils.ts +57 -0
- package/dist/plugins.cjs +0 -166
- package/dist/plugins.d.cts +0 -655
- package/dist/plugins.d.ts +0 -654
- package/dist/plugins.js +0 -143
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,50 @@
|
|
|
1
1
|
# rollipop
|
|
2
2
|
|
|
3
|
+
## 1.0.0-alpha.22
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 3c67f3a: Track transform cache hits in build progress.
|
|
8
|
+
- 53630e0: Centralize dev server event dispatch.
|
|
9
|
+
- 6c2ae0d: Fix progress totals for HMR rebuilds.
|
|
10
|
+
- 1c059a4: Bump `@rollipop/rolldown` to 1.0.11.
|
|
11
|
+
- 758fe67: Bump `@rollipop/rolldown` to 1.0.9.
|
|
12
|
+
- 6c97ee3: enable sourcemap generation when bundle CLI receives `--sourcemap-output`
|
|
13
|
+
|
|
14
|
+
## 1.0.0-alpha.21
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- 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.
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- e45aedd: Add `@rollipop/jest-preset` — a jest preset and transformer that runs your tests through rollipop's rust-side transform pipeline.
|
|
23
|
+
- 9d18670: Expose Flow config for the native transform pipeline.
|
|
24
|
+
- 7934e0d: support non-image assets without dimensions
|
|
25
|
+
- 757756b: resolve React Native package alias fields by default
|
|
26
|
+
- 3e58d68: bump `@rollipop/rolldown` to 1.0.5
|
|
27
|
+
|
|
28
|
+
## 0.1.0-alpha.20
|
|
29
|
+
|
|
30
|
+
### Patch Changes
|
|
31
|
+
|
|
32
|
+
- d6e10db: bump @rollipop/rolldown to 1.0.2
|
|
33
|
+
- 140902b: impl @rollipop/plugin-module-federation
|
|
34
|
+
|
|
35
|
+
## 0.1.0-alpha.19
|
|
36
|
+
|
|
37
|
+
### Patch Changes
|
|
38
|
+
|
|
39
|
+
- a54c414: emit sourcemap sources relative to project root
|
|
40
|
+
- 419aa29: bump @rollipop/rolldown to 1.0.1
|
|
41
|
+
|
|
42
|
+
## 0.1.0-alpha.18
|
|
43
|
+
|
|
44
|
+
### Patch Changes
|
|
45
|
+
|
|
46
|
+
- fa83644: trigger publish
|
|
47
|
+
|
|
3
48
|
## 0.1.0-alpha.17
|
|
4
49
|
|
|
5
50
|
### Patch Changes
|
|
@@ -16,11 +61,11 @@
|
|
|
16
61
|
|
|
17
62
|
```ts
|
|
18
63
|
// Before
|
|
19
|
-
import { BuiltinPlugins } from
|
|
64
|
+
import { BuiltinPlugins } from "rollipop";
|
|
20
65
|
plugins: [BuiltinPlugins.worklets()];
|
|
21
66
|
|
|
22
67
|
// After
|
|
23
|
-
import { worklets } from
|
|
68
|
+
import { worklets } from "rollipop/plugins";
|
|
24
69
|
plugins: [worklets()];
|
|
25
70
|
```
|
|
26
71
|
|