mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
14 lines
314 B
JavaScript
14 lines
314 B
JavaScript
export default class LocalESMPlugin {
|
|
constructor(serverless, options, utils) {
|
|
this.serverless = serverless
|
|
this.options = options
|
|
this.utils = utils
|
|
this.commands = {
|
|
esmCustomCommand: {
|
|
usage: 'Description of custom command',
|
|
configDependent: false,
|
|
},
|
|
}
|
|
}
|
|
}
|