rollipop 0.1.0-alpha.7 → 0.1.0-alpha.9

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,21 @@
1
1
  # rollipop
2
2
 
3
+ ## 0.1.0-alpha.9
4
+
5
+ ### Patch Changes
6
+
7
+ - 200e373: noop in `onHmrUpdates` when HMR is disabled
8
+ - 099598b: esm only
9
+ - 5b9fd00: update default `dev` option
10
+ - 19c5b71: add built-in constants environment variables
11
+
12
+ ## 0.1.0-alpha.8
13
+
14
+ ### Patch Changes
15
+
16
+ - adf0937: improve HRM runtime compatibility for lower runtime versions
17
+ - cd796f7: fix hermes performance degradation issue
18
+
3
19
  ## 0.1.0-alpha.7
4
20
 
5
21
  ### Patch Changes
package/client.d.ts CHANGED
@@ -1,3 +1,8 @@
1
+ interface ImportMetaEnv {
2
+ readonly MODE: 'development' | 'production';
3
+ readonly BASE_URL: string | undefined;
4
+ }
5
+
1
6
  interface ImportMeta {
2
7
  hot?: import('./dist').HMRContext;
3
8
  env: ImportMetaEnv;
@@ -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 __export = (all, symbols) => {
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 { __export as n, __require as r, __commonJSMin as t };
22
+ export { __exportAll as n, __require as r, __commonJSMin as t };