From 9d1537daf7c11dc506d21716cc045ee7bfd5e340 Mon Sep 17 00:00:00 2001 From: Szymon Stasik Date: Mon, 11 Oct 2021 10:14:24 +0200 Subject: [PATCH] fix(general): enables sls offline (without start param) (#31) this addresses #30 --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index d520c9a..4e54f98 100644 --- a/index.js +++ b/index.js @@ -32,6 +32,7 @@ class PackageExternal { 'after:deploy:function:packageFunction': this.afterDeploy.bind(this), 'after:package:createDeploymentArtifacts': this.afterDeploy.bind(this), "before:offline:start:init": this.beforeDeploy.bind(this), + "before:offline:start": this.beforeDeploy.bind(this), "before:offline:start:end": this.afterDeploy.bind(this), "invoke:local:loadEnvVars": this.beforeDeploy.bind(this), "invoke:local:invoke": this.afterDeploy.bind(this),