You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I usually put my deploy command in my package.json's scripts section, e.g.:
"deploy": "serverless deploy"
Doing it this way it's a little bit more awkward to pass the --confirm command (npm run deploy -- --confirm) so it'd be nice if I was able to set it up to prompt for a confirmation if a flag isn't provided, e.g. something like:
$ npm run deploy
Are you sure you want to run 'deploy'? y/N
I think the prompt would be off by default and enabled with a flag e.g.:
serverless deploy --confirm-prompt
Would you be interested in a PR for that feature?
The text was updated successfully, but these errors were encountered:
Thanks for the handy plugin.
I usually put my deploy command in my
package.json
'sscripts
section, e.g.:Doing it this way it's a little bit more awkward to pass the
--confirm
command (npm run deploy -- --confirm
) so it'd be nice if I was able to set it up to prompt for a confirmation if a flag isn't provided, e.g. something like:I think the prompt would be off by default and enabled with a flag e.g.:
Would you be interested in a PR for that feature?
The text was updated successfully, but these errors were encountered: