The original benchmarks of bundledDependencies have been flawed.
To achieve the same result of bundle-dependencies using bundledDependencies package.json property:
dependencies to bundledDependencies package.json property.rm -fr ./node_modules).--production flag (i.e., npm install --production).You can use bundled-dependencies package to automate the first step.
npm install bundled-dependencies --save-dev
Add to package.json:
{
"scripts": {
"bundle-dependencies": "bundled-dependencies"
}
}
Run:
npm run bundle-dependencies
bundle-dependenciesBundles (deep) all module dependencies into a monolithic NPM package.
bundle-dependencies is designed to be used with devDependencies and modules installed using --global flag.
How much time can it save? Lets see.
2.3.63 release is done without bundle-dependencies.
time npm install pragmatist@2.3.63
34.59s user
6.15s system
24% cpu
2:44.35 total
2.3.64 release is done with bundle-dependencies.
time npm install pragmatist@2.3.64
5.41s user
2.34s system
36% cpu
21.175 total
The bundle-dependencies install process is 8 times faster (2 minutes 44 seconds compared to 21 second).
npm install bundle-dependencies --save-dev
Add to package.json:
{
"scripts": {
"publish-bundle": "bundle-dependencies publish"
}
}
To publish your package with bundled dependencies, run:
npm run publish-bundle
.npmignoreAdd to .npmignore (and .gitignore):
.backup.package.json
.backup.node_modules
These are the backup files of your original ./package.json and ./node_modules. Do not commit them to the package registry.
bundle-dependencies publish execution flow is:
bundle-dependencies internal prepublish logic.npm publish.bundle-dependencies internal postpublish logic.Do not add bundle-dependencies script to prepublish, publish or postpublish package.json scripts. NPM copies the contents of package.json before prepublish script is executed. This makes the internal prepublish logic impossible. prepublish and postpublish commands are exposed for testing only.
prepublish logic../node_modules../package.json.npm install --production)../node_modules to ./bundled_modules.tar../package.json.bundled-dependencies dependency to ./package.json.postinstall script to ./package.json.postpublish logic../bundled_modules.tar../package.json../node_modules../package.json.postinstall scriptThe postinstall script is:
bundled-dependencies extract
./node_modules../bundled_modules.tar to ./node_modules.