Skip to content

v0.12.3

Compare
Choose a tag to compare
@gronxb gronxb released this 24 Feb 03:35
· 8 commits to main since this release

What's Changed

You can inject the platform into hot-updater.config.ts to optionally use the flag.

import { metro } from "@hot-updater/metro";
import { defineConfig } from "hot-updater";
// ... more import

export default defineConfig(({ platform }) => { // You can adjust it based on the platform you are using.
  return {
    build: metro({
      enableHermes: platform === "ios",
    }),
    ...
  };
});

Full Changelog: v0.12.2...v0.12.3