serverless-plugin-typescript icon indicating copy to clipboard operation
serverless-plugin-typescript copied to clipboard

Support for Serverless Azure Functions

Open TylerHaigh opened this issue 5 years ago • 0 comments

Would it be possible to add additional hooks to this plugin to help integrate with serverless-azure-functions

For example - offline hooks:

      'before:offline:build:build': async () => {
        await this.compileTs()
        await this.copyExtras()
        await this.copyDependencies()
      },
      'before:offline:offline': async () => {
        await this.compileTs()
        await this.copyExtras()
        await this.copyDependencies()
        this.watchAll()
      },

I'm sure there's probably more hooks required for the other commands (deploy, package).

TylerHaigh avatar Sep 24 '19 10:09 TylerHaigh