From b0ec8087808abbb7acf5746f6fe039326e064bc8 Mon Sep 17 00:00:00 2001 From: SyamimMusa <105887165+SyamimMusa@users.noreply.github.com> Date: Fri, 8 Mar 2024 08:23:29 +0000 Subject: [PATCH] fix: Added skipRebuild options to esbuildOptions (#531) It was missing before and threw an error if I tried to include the option in my esbuild config. Works fine now after adding it here --- src/bundle.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bundle.ts b/src/bundle.ts index 891263f..12548c4 100644 --- a/src/bundle.ts +++ b/src/bundle.ts @@ -38,6 +38,7 @@ export async function bundle(this: EsbuildServerlessPlugin): Promise { 'outputWorkFolder', 'nodeExternals', 'skipBuild', + 'skipRebuild', 'skipBuildExcludeFns', 'stripEntryResolveExtensions', 'disposeContext',