From a35168f94543ba5ec486591c647169c34a3289fe Mon Sep 17 00:00:00 2001 From: minibits-cash Date: Mon, 1 Jun 2026 14:29:30 +0200 Subject: [PATCH] Remove hot-updater/babel-plugin from babel config (gone in 0.32.0) 0.32.0 no longer exports ./babel-plugin (the package now only exports the config entry), which broke the build with ERR_PACKAGE_PATH_NOT_EXPORTED. The plugin's only job was replacing the __HOT_UPDATER_BUNDLE_ID build-time constant; the 0.32.0 client reads the bundle ID from the native module (getBundleId()) instead, so no babel plugin is required. Co-Authored-By: Claude Opus 4.8 --- babel.config.js | 1 - 1 file changed, 1 deletion(-) diff --git a/babel.config.js b/babel.config.js index d7b4313..79fc3c9 100644 --- a/babel.config.js +++ b/babel.config.js @@ -14,6 +14,5 @@ module.exports = { ['module:react-native-dotenv'], 'react-native-worklets/plugin', '@babel/plugin-proposal-export-namespace-from', - 'hot-updater/babel-plugin', ], };