Roman
Roman
Hi @kaizencc, appreciate your detailed response! The prop I am talking about is `publishAssetsInParallel`. Docs: https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.pipelines.CodePipeline.html#publishassetsinparallel > asset and link that to deploy.yml. But then suddenly we'd have to keep...
> and recommend you not commit this folder to your repository. Of course, but that's not what I meant. I meant tracking the assets via artifacts in GH. 1. Build...
I don't understand tho why manifest needs to be well known? To my understanding, cdk can work with `cdk.out` alone. That's how CodePipeline via AWS works now, I think. Once...
Just realized this can be fixed with the following: ```ts const validator = compile(schema, { ensure: true, ajvOptions: { useDefaults: true } }) ``` But IMO, there is still a...
Would be great to get this closed / released officially, so that we could use it as a blueprint for other databases, such as PostgresQL.
I was calling the fn programmatically. So I guess it's an undocumented use case 😀
```ts import { toJestConfig } from 'dotalias/lib/converters/toJestConfig' const paths: Record = { bar: './../bar/src' } toJestConfig(paths).moduleNameMapper ```
See https://codesandbox.io/s/typescript-playground-export-forked-g2ekj?file=/index.ts
> Do you have some imaginary API in mind that we could expose to help you implement this? The original API is almost fine, I think. The only issue is...
IMO in programmatic use case everything should be explicit without any side effects, e.g. no reading from disk.