Maciej Radzikowski
Maciej Radzikowski
Recently AWS Toolkit for VS Code received this functionality, I hope it will come to this toolkit soon as well. See: https://aws.amazon.com/about-aws/whats-new/2020/03/aws-toolkit-for-visual-studio-code-supports-aws-step-functions
You basically have to make commits with `feat!: ...` (like a breaking change) when on pre-major version to have the minor version bumped. I agree it would be nice to...
@medikoo thanks for the explanation of the reasoning behind this change. > we expect the project configuration to not reach beyond the project folder, as that's an anti-pattern for security...
> I can imagine that in such monorepo setups, there will be parts of code that will live outside of the service dir that are shared across multiple services and...
> > Now, with those plugins, I can reference the logger from the common dir in code of both services. > > Just wondering, where do you have `serverless-webpack` or...
Yes, it would be the perfect solution. Even for projects having multiple stacks and not using Lerna currently, migrating to using Lerna to achieve common config files would be probably...
Your proposal looks great, also all the related features you listed seem like a good direction. I have a question though - I don't fully understand the relationship between the...
I second this. Open in new pane is something I personally miss the most.
A one-line alternative is to use [get-stream](https://www.npmjs.com/package/get-stream) package, as posted here: https://github.com/aws/aws-sdk-js-v3/issues/1096#issuecomment-616743375 I understand the reason for returning a ReadableStream, but a built-in helper method would be nice. Reading the...
@kristiannotari rather than adding "DOM" to tsconfig, you should use one of the solutions suggested above - they require additional code, but work in Node+TS. You can use `assembleStream` function...