Daniel dos Santos Pereira

Results 3 comments of Daniel dos Santos Pereira

I ran into the same problem, looked into the CDK internals and it uses [minimatch](https://www.npmjs.com/package/minimatch) under the hood as you can see [here](https://github.com/aws/aws-cdk/blob/83c4123273fda2a2e349b55f1e50d5afa1c7dd9d/packages/aws-cdk/lib/api/cxapp/cloud-assembly.ts#L138). With that, you can turn what you...

@shivlaks Any update on this? I think that be forced to build everything just to deploy one stack is really bad.

What I've done so far, for those looking for a workaround, is to rely on `bundlingRequired` property in the stack. It is similar to this: ```ts if (!this.bundlingRequired) { //...