I have a relatively small codebase which requires not to be bundled and I need to keep the folder structure in the output. Yet, node_modules
folder is quite large and I'd like to keep it bundled?/minimized with dead code elimination.
Example folder structure:
- bin/file-1.js
- bin/file-2.js
- bin/folder-A/file-A1.js
- bin/folder-A/file-A2.js
- bin/folder-B/file-B1.js
- bin/folder-B/file-B2.js
- bin/folder-B/folder-BB/file-BB1.js
- bin/folder-B/folder-BB/file-BB2.js
- node_modules/module-1
- node_modules/module-2
- node_modules/module-3
- node_modules/module-4
I just need all 4 modules under node_modules
minimized so that it won't take so much space when I deploy it with serverless fw to AWS lambda
I ended up using node-prune. So much easier and actually reduced size is smaller than when webpack is used.