Skip to content

Commit

Permalink
fix: don't pass any output to the custom target
Browse files Browse the repository at this point in the history
  • Loading branch information
atlj committed Dec 19, 2024
1 parent 4fee364 commit 259301c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion packages/react-native-builder-bob/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,6 @@ async function buildTarget(
await customTarget({
options: targetOptions,
source: path.resolve(root, source),
output: path.resolve(root, output, 'typescript'),
report,
root,
});
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native-builder-bob/src/targets/custom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { spawn } from '../utils/spawn';
import dedent from 'dedent';
import del from 'del';

type Options = Input & {
type Options = Omit<Input, 'output'> & {
options?: {
script?: string;
clean?: string;
Expand Down

0 comments on commit 259301c

Please sign in to comment.