diff --git a/packages/pluggable-widgets-tools/CHANGELOG.md b/packages/pluggable-widgets-tools/CHANGELOG.md index 0e1d6baf..8c3e756d 100644 --- a/packages/pluggable-widgets-tools/CHANGELOG.md +++ b/packages/pluggable-widgets-tools/CHANGELOG.md @@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### Changed +- We added @d11/react-native-fast-image as an external native dependency in rollup config. - We migrated to pnpm as our package manager. Users of the widgets tools should be able to continue using their package manager of choice. - We updated React Native to version 0.77.3 to align with the Native Widgets project requirements. diff --git a/packages/pluggable-widgets-tools/configs/rollup.config.native.mjs b/packages/pluggable-widgets-tools/configs/rollup.config.native.mjs index 682cf9fc..51c3265d 100644 --- a/packages/pluggable-widgets-tools/configs/rollup.config.native.mjs +++ b/packages/pluggable-widgets-tools/configs/rollup.config.native.mjs @@ -66,7 +66,8 @@ const nativeExternal = [ /^react-native-svg($|\/)/, /^react-native-vector-icons($|\/)/, /^@?react-navigation($|\/)/, - /^react-native-safe-area-context($|\/)/ + /^react-native-safe-area-context($|\/)/, + /^@d11\/react-native-fast-image($|\/)/ ]; export default async args => { diff --git a/packages/pluggable-widgets-tools/package.json b/packages/pluggable-widgets-tools/package.json index 14bc5bf8..40efb0cf 100644 --- a/packages/pluggable-widgets-tools/package.json +++ b/packages/pluggable-widgets-tools/package.json @@ -1,6 +1,6 @@ { "name": "@mendix/pluggable-widgets-tools", - "version": "10.24.0", + "version": "11.3.0", "description": "Mendix Pluggable Widgets Tools", "engines": { "node": ">=20"