rollipop 0.1.0-alpha.6 → 0.1.0-alpha.8
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/client.d.ts +1 -0
- package/dist/{chunk-DJulfCLt.js → chunk-Dj-qOoLf.js} +2 -2
- package/dist/commands.cjs +5161 -0
- package/dist/commands.d.cts +5 -0
- package/dist/commands.d.ts +6 -0
- package/dist/commands.js +5111 -0
- package/dist/hmr-client.js +153 -153
- package/dist/hmr-runtime.js +256 -232
- package/dist/index.cjs +878 -397
- package/dist/index.d.cts +177 -42
- package/dist/index.d.ts +177 -43
- package/dist/index.js +768 -294
- package/dist/pluginutils.cjs +12 -12
- package/dist/pluginutils.d.cts +118 -26
- package/dist/pluginutils.d.ts +119 -27
- package/dist/pluginutils.js +3 -2
- package/dist/runtime.cjs +2 -6
- package/dist/runtime.js +2 -6
- package/package.json +20 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# rollipop
|
|
2
2
|
|
|
3
|
+
## 0.1.0-alpha.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- adf0937: improve HRM runtime compatibility for lower runtime versions
|
|
8
|
+
- cd796f7: fix hermes performance degradation issue
|
|
9
|
+
|
|
10
|
+
## 0.1.0-alpha.7
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 66477ec: implement deferred caching with batch flush
|
|
15
|
+
- 646d819: resolve HMR not working when cache is enabled
|
|
16
|
+
- 78a57d4: add dotenv-based environment variable loading
|
|
17
|
+
|
|
3
18
|
## 0.1.0-alpha.6
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/client.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { createRequire } from "node:module";
|
|
|
3
3
|
//#region rolldown:runtime
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
5
5
|
var __commonJSMin = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
|
|
6
|
-
var
|
|
6
|
+
var __exportAll = (all, symbols) => {
|
|
7
7
|
let target = {};
|
|
8
8
|
for (var name in all) {
|
|
9
9
|
__defProp(target, name, {
|
|
@@ -19,4 +19,4 @@ var __export = (all, symbols) => {
|
|
|
19
19
|
var __require = /* @__PURE__ */ createRequire(import.meta.url);
|
|
20
20
|
|
|
21
21
|
//#endregion
|
|
22
|
-
export {
|
|
22
|
+
export { __exportAll as n, __require as r, __commonJSMin as t };
|