-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Plugin executes out of order relative to other serverless plugins #18
Comments
jhslinkman
pushed a commit
to jhslinkman/serverless-stack-output
that referenced
this issue
Sep 6, 2018
This allows this plugin to execute in the order in which it is included in the plugins section of serverless.yml
kevinsperrine
added a commit
to kevinsperrine/serverless-stack-output
that referenced
this issue
Dec 6, 2018
Since the original package doesn't seem to be maintained. I've merged #17 + #19 and published on npm under @anttiviljami/serverless-stack-output |
Any chance this can be merged to this original package? |
This was referenced May 1, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Consider a serverless.yml
where
other-plugin
processesstack-output.yml
output by this file. As it's currently implemented, other-plugin will being processing beforeserverless-stack-output
finished. The offending line is in the StackOutputPlugin#process method. If that method is changed to return a promise, everything works as expected.The text was updated successfully, but these errors were encountered: