fix: _packageAll params

This commit is contained in:
Max Marze 2024-05-08 12:28:53 -04:00
parent 14fb25e988
commit d615fb1207

View File

@ -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;
}