org-formation / aws-resource-providers

A community driven repository where you can find AWS Resource Type Providers for different purposes (including org-formation ones).
MIT License
88 stars 21 forks source link

Packages contain aws sdk #22

Closed OlafConijn closed 3 years ago

OlafConijn commented 3 years ago

The current build process includes the aws sdk (and all of its dependencies) when packaging a RP. We should be able to leave the aws sdk out and have a smaller package size.

Downloading/installing will be faster and hosting the registry will cost less money

eduardomourar commented 3 years ago

Fixed by using the bootstrap from Lerna. It only installs the AWS SDK in the root of the repository, so it should not add it to the package anymore.

eduardomourar commented 3 years ago

i found out what was the problem. during packaging with docker, the .npmrc in the repo root was not being considered. after creating one in each subfolder, the bundled size is a lot smaller.