Skip to content

Commit 1c2760e

Browse files
authored
[MOO-1847]: Include @d11/react-native-fast-image as an external native dependancy in rollup config (#140)
## Checklist - Contains unit tests ❌ - Contains breaking changes ❌ - Compatible with: MX11 - Did you update version and changelog? ❌ - PR title properly formatted (`[XX-000]: description`)? ✅ ## This PR contains - [ ] Bug fix - [ ] Feature - [ ] Refactor - [ ] Documentation - [x] Other - Rollup config update to include new external native dependancy ## What is the purpose of this PR? Update rollup native config to include @d11/react-native-fast-image dependancy to avoid duplicate symbols error
2 parents c25dc0d + f9da9a9 commit 1c2760e

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

packages/pluggable-widgets-tools/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
1010

1111
### Changed
1212

13+
- We added @d11/react-native-fast-image as an external native dependency in rollup config.
1314
- We migrated to pnpm as our package manager. Users of the widgets tools should be able to continue using their package manager of choice.
1415

1516
- We updated React Native to version 0.77.3 to align with the Native Widgets project requirements.

packages/pluggable-widgets-tools/configs/rollup.config.native.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ const nativeExternal = [
6666
/^react-native-svg($|\/)/,
6767
/^react-native-vector-icons($|\/)/,
6868
/^@?react-navigation($|\/)/,
69-
/^react-native-safe-area-context($|\/)/
69+
/^react-native-safe-area-context($|\/)/,
70+
/^@d11\/react-native-fast-image($|\/)/
7071
];
7172

7273
export default async args => {

packages/pluggable-widgets-tools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mendix/pluggable-widgets-tools",
3-
"version": "10.24.0",
3+
"version": "11.3.0",
44
"description": "Mendix Pluggable Widgets Tools",
55
"engines": {
66
"node": ">=20"

0 commit comments

Comments
 (0)