@makeswift/runtime 0.8.7 → 0.8.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/dist/index.es.js CHANGED
@@ -1127,7 +1127,7 @@ async function fonts(_req, res, { getFonts } = {}) {
1127
1127
  const fonts2 = (_a = await (getFonts == null ? void 0 : getFonts())) != null ? _a : [];
1128
1128
  return res.json(fonts2);
1129
1129
  }
1130
- const version = "0.8.7";
1130
+ const version = "0.8.8";
1131
1131
  async function handler(req, res, { apiKey }) {
1132
1132
  if (req.query.secret !== apiKey) {
1133
1133
  return res.status(401).json({ message: "Unauthorized" });
@@ -3635,11 +3635,11 @@ function isDomNodeHandle(value) {
3635
3635
  }
3636
3636
  class ReactRuntime {
3637
3637
  constructor({
3638
- unstable_breakpoints
3638
+ breakpoints
3639
3639
  }) {
3640
3640
  __publicField(this, "store");
3641
3641
  this.store = configureStore$1({
3642
- breakpoints: unstable_breakpoints ? parseBreakpointsInput(unstable_breakpoints) : void 0
3642
+ breakpoints: breakpoints ? parseBreakpointsInput(breakpoints) : void 0
3643
3643
  });
3644
3644
  registerBuiltinComponents(this);
3645
3645
  }