Skip to content

Commit

Permalink
fix: remove outputBuildFolder and outputWorkFolder from esbuild build…
Browse files Browse the repository at this point in the history
… options (#343)
  • Loading branch information
samchungy committed Jul 19, 2022
1 parent a233a1a commit 54a25bd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/bundle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ export async function bundle(this: EsbuildServerlessPlugin, incremental = false)
delete config['installExtraArgs'];
delete config['disableIncremental'];
delete config['outputFileExtension'];
delete config['outputBuildFolder'];
delete config['outputWorkFolder'];

/** Build the files */
const bundleMapper = async (entry: string): Promise<FileBuildResult> => {
Expand Down

0 comments on commit 54a25bd

Please sign in to comment.