Skip to content

Instantly share code, notes, and snippets.

@richardgrantserverless
Created May 17, 2022 22:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save richardgrantserverless/79c6198f65c4328bd10d20fade39ede0 to your computer and use it in GitHub Desktop.
Save richardgrantserverless/79c6198f65c4328bd10d20fade39ede0 to your computer and use it in GitHub Desktop.
class ServerlessPlugin {
constructor(serverless, options) {
// ...
this.commands = {
welcome: {
usage: 'Helps you start your first Serverless plugin',
lifecycleEvents: [
'hello',
'world',
],
// ...
},
};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment