Open ShtiviGrin opened 2 years ago
It looks like this is caused by this line in serverless-aws-alias-fixed
:
const monitorStack = require(
Path.join(this._serverless.config.serverlessPath,
'plugins',
'aws',
'lib',
'monitorStack')
);
In the recent versions of Serverless, it's called monitor-stack
not monitorStack
.
I was going to create a copy to fix this, but it looks like this person already did: https://github.com/Psycholive/serverless-aws-alias
So you can change the dependency to:
"serverless-aws-alias-v3": "3.2.0"
this is so annoying :)
this is so annoying :)
yeah this is a very irritating issue
looks like all the serverless/lib/plugins/aws/lib/* files change from snake case to dash case, so typical problems on serverless framework.
Still having the same problem. any fix available?
@fabianobonomini Switching to "serverless-aws-alias-v3" worked for me
Hi, I'm trying to use this package in my project and I ran into a strange issue.
My serverless.yml file looks as follows:
and when I run
sls deploy --alias v1
I get the following error:package.json:
have anyone else ran into that issue and managed to figure it out? thanks!