Spring / NestJS like decorators for your Azure functions.
npm i azure-functions-decorators
add
"experimentalDecorators": true
to 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-private
Github Actions will publish a new release to the npm registry and create a new release on Github.