Skip to content

Commit

Permalink
fix(bundling): fix esbuild watch yields success=false when no error (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorjames authored Jan 20, 2023
1 parent d651750 commit 2baa80d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/esbuild/src/executors/esbuild/esbuild.impl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export async function* esbuildExecutor(
}

next({
success: !!error && !hasTypeErrors,
success,
// Need to call getOutfile directly in the case of bundle=false and outfile is not set for esbuild.
outfile: join(
context.root,
Expand Down

0 comments on commit 2baa80d

Please sign in to comment.