Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/plugin-repack/src/lib/pluginRepack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ export const pluginRepack =
name: 'start',
description: 'Starts Re.Pack dev server.',
action: async (args: StartArgs) => {
const reactNativePath = api.getReactNativePath();
const root = api.getProjectRoot();
const platforms = api.getPlatforms();
const { port, startDevServer } = await findDevServerPort(
Expand All @@ -54,7 +55,7 @@ export const pluginRepack =
startCommand.func(
[],
// @ts-expect-error TODO fix getPlatforms type
{ root, platforms, ...pluginConfig },
{ reactNativePath, root, platforms, ...pluginConfig },
{ ...args, port },
);
},
Expand Down
Loading