Vicary A.
Vicary A.
Thanks for making an effort. So in theory devOps pipelines should be programmatically friendly to parse, in general it should 1. Remove CLI progress bar 2. Show deployment outputs in...
Yes. Such that I can easily plug my own scripts to grep necessary information into our own CI/CD pipelines. For example I can send the ARN downstream to another repo...
Glad to be of help!
I am the author of [appsync-schema-converter](https://www.npmjs.com/package/appsync-schema-converter) and I'd like to see my package being superseded by the next major version here. If that's possible I am more than happy to...
@willfarrell Should it be 3.0 or 4.0? Also some old plugins add something to lambda context, while others add to events. I am kinda leaning towards extending the event object,...
My team is currently adding everything to event, including `typeorm` and `fetch`, to make handlers testable. But I want this PR to be generally aligned with your advertised usage, I'll...
@willfarrell It's ready now. Tried avoiding the necessity of `Context & ...` in usage, but that breaks the `extends LambdaContext` check. I chose to retain a more guaranteed typing. Usage...
We may update the types in all packages, shall I do that here or in a new PR? For example, `@middy/cloudwatch-metrics` with typings: ```ts export const handler = middy() .use(cloudwatchMetrics())...
@willfarrell added types for middlewares, please comment.
TypeScript has no way to perform string matching without introducing unused vars, I have to skip these errors. https://github.com/middyjs/middy/blob/bd4badd4890db0b987f94524a15f67d89791d249/packages/ssm/index.d.ts#L10-L11 https://github.com/middyjs/middy/blob/bd4badd4890db0b987f94524a15f67d89791d249/packages/ssm/index.d.ts#L18-L19