Skip to content

Commit

Permalink
fix(esbuild): Write output file to correct location.
Browse files Browse the repository at this point in the history
  • Loading branch information
darkobits committed Jul 12, 2023
1 parent 46d8505 commit 08a7e45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/configuration/strategies/esbuild.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export async function esbuildStrategy<M = any>(filePath: string, pkgInfo: Packag
const buildOptions: esbuild.BuildOptions = {
entryPoints: [filePath],
target: `node${currentNodeVersion.major}`,
outfile: tempFileName,
outfile: tempFilePath,
format,
platform: 'node',
bundle: true,
Expand Down

0 comments on commit 08a7e45

Please sign in to comment.