From d615fb1207bcb60b7bdce01c0f460e763eaf82bd Mon Sep 17 00:00:00 2001 From: Max Marze Date: Wed, 8 May 2024 12:28:53 -0400 Subject: [PATCH] fix: _packageAll params --- lib/plugins/esbuild/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/plugins/esbuild/index.js b/lib/plugins/esbuild/index.js index da59c792f..1c9f24d9c 100644 --- a/lib/plugins/esbuild/index.js +++ b/lib/plugins/esbuild/index.js @@ -412,7 +412,7 @@ class Esbuild { // If not packaging individually then package all functions together into a single zip if (!this.serverless?.service?.package?.individually) { - await this._packageAll(handlerPropertyName); + await this._packageAll(functions, handlerPropertyName); return; }