cookiecutter-webpack
cookiecutter-webpack copied to clipboard
Automate dependency update
Currently using npm-check-updates to check for dependecy updates and comparing the diff. Would be super nice to automate this process somehow...
Documenting current process:
- Create a cookiecutter-webpack project with default options (would be nice to test all options).
$ cookiecutter [email protected]:hzdg/cookiecutter-webpack.git
- enter new project (
project_name) is default and create a new git repository and commit everything.
$ cd project_name/
$ git init
$ git add .
$ git commit -m 'Init'
- Run
npm-check-updatestool to updatepackage.jsonto latest dependencies
$ ncu -uat
- Compare diff and update
cookiecutter-webpack/{{cookiecutter.repo_name}}/package.jsonfile with new dependencies.
$ git diff
What about https://greenkeeper.io/?
Thanks @jayfk, this looks like what we need :smile: