cdk-esbuild icon indicating copy to clipboard operation
cdk-esbuild copied to clipboard

CDK constructs for esbuild, an extremely fast JavaScript bundler

Results 9 cdk-esbuild issues
Sort by recently updated
recently updated
newest added

Cloudfront supports small inline JavaScript functions. They have some limitations, mainly regarding size and used memory. We should evaluate if the existing inline code works with it, or add support...

enhancement
help wanted
backlog

**Describe the bug** The `metafile` option has no effect. **To Reproduce** ```ts new TypeScriptCode("src/index.ts", { buildOptions: { metafile: true } }); ``` **Expected behavior** I can access the metafile somehow....

bug

Using the escape hatch, provide an implementation that spawns a sub process to run an (more or less) arbitrary build script in async mode, so plugins can be used. Turn...

backlog

Once `esbuild` has reached a stable version 1.0, a new major version will be released.

backlog

Using the escape hatch, provide an implementation that uses a docker container.

backlog

A breaking change in esbuild v0.22.0 change the default bundling behavior for node packages from bundling packages to not bundling them. This came out of nowhere and I'm not entirely...

With the release of esbuild [v0.22.0](https://github.com/evanw/esbuild/releases/tag/v0.22.0), external node packages are by default NOT included in bundles anymore. This likely breaks most usage of esbuild with this package. **Update:** v0.23.0 has...

enhancement