Spring / NestJS like decorators for your Azure functions.
npm i azure-functions-decoratorsadd
"experimentalDecorators": trueto your tsconfig.json
class FunctionApp {
@HttpFunction()
static async httpTrigger(@QueryParameter('name') name: string): Promise<string> {
return `Hello, ${name}`;
}
}First, update the CHANGELOG. Then run these commands.
lerna version --no-privateGithub Actions will publish a new release to the npm registry and create a new release on Github.