filipgolonka / bower-config-mergetool
Bower config mergetool
dev-master
2015-04-16 11:09 UTC
This package is not auto-updated.
Last update: 2025-01-18 19:14:18 UTC
README
This tool helps developer to use one bower.json
file, instead of multiple ones.
Consider following situation. Your project has custom bower.json file. You install some dependencies using composer.
Each of them has his own bower.json
file. How to manage it?
This tool can crawl vendor
directory. It reads each of bower.json
file and merge dependencies into
main bower.json
file.
To use this tool, install bower-config-mergetool
:
composer require filipgolonka/bower-config-mergetool:dev-master
and just add following lines to your composer.json
file:
"scripts": {
"post-install-cmd": [
"STP\\Bower\\ConfigMergeTool::mergeConfig",
"npm install"
],
"post-update-cmd": [
"STP\\Bower\\ConfigMergeTool::mergeConfig",
"npm install"
]
}