perpil

Results 33 comments of perpil

I've tracked down what is still loading the SSO client. It's `@aws-sdk/credential-provider-ini`. If you comment out lines 7 and 53-55 in [this file](https://github.com/aws/aws-sdk-js-v3/blob/0b29652616c4c5b0fed896157538432d502e31a8/packages/credential-provider-ini/src/resolveProfileData.ts#L7) the SSO client is no longer loaded...

Just tested with 3.502. Init Duration is on par with the patched fromEnv defaultProvider if I omit the SSO packages from the bundle. I've updated my [repo](https://github.com/perpil/sso-coldstart-benchmark-cdk) with a patch...

I'm using esbuild, you can see my config [here](https://github.com/perpil/sso-coldstart-benchmark-cdk/blob/aa32e9b421b4ae93eeface168d6a19147e572448/lib/coldstart-benchmark-stack.mjs#L27) Let me turn on [splitting](https://esbuild.github.io/api/#splitting) and see what happens.

I tried using splitting, but it appears incompatible with the CDK esbuild wrapper which is always setting `outfile`. Adding: ``` esbuildArgs: { '--splitting': true, } ``` results in: `✘ [ERROR]...

I think this can be resolved, the splitting thing is a cdk peculiarity.

github.com links are deprecated, the new link is: https://hongru.github.io/proj/canvas2image/index.html

A `cleanEcrAssets` property makes sense. Thanks for the clarification on `dockerImageAsset`. I'll try to implement this when I get some time.

Thanks for the feedback! I'm currently learning React so stay tuned. It might be a spinoff project.

It also doesn't seem to be using the computed location correctly when used with the material blog plugin: https://github.com/squidfunk/mkdocs-material/issues/7518 If it helps, [here's](https://github.com/squidfunk/mkdocs-material/blob/8df393d11158ebc87026e4eea9ed0c887eae2371/src/plugins/social/plugin.py#L174) how mkdocs-material references the `cards_dir`

Thanks for the update! Using 1.17, the repro that was attached to https://github.com/squidfunk/mkdocs-material/issues/7518 seems to be working. However, when I try with my `mkdocs.yml`, it's looking for the social cards...