grunt-local-deps-update
Advanced tools
Comparing version 1.0.1 to 1.0.2
@@ -5,4 +5,3 @@ /* | ||
* | ||
* Copyright (c) 2014 Erwan Jegouzo | ||
* Copyright (c) 2016 David Virtser | ||
* Copyright (c) 2016 Erwan Jegouzo, David Virtser | ||
* Licensed under the MIT license. | ||
@@ -9,0 +8,0 @@ */ |
{ | ||
"name": "grunt-local-deps-update", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "Detects and updates dependencies if package.json or bower.json version changed", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/virtser/grunt-local-deps-update", |
* This plugin was originally called [grunt-autoupdate](https://github.com/erwanjegouzo/grunt-autoupdate) and written by Erwan Jegouzo. | ||
# grunt-local-deps-update | ||
# grunt-local-deps-update [![npm version](https://badge.fury.io/js/grunt-local-deps-update.svg)](https://badge.fury.io/js/grunt-local-deps-update) | ||
> Detects and updates local dependencies if package.json or bower.json version changed. | ||
Why? If your node_modules or bower_components folder is not under version control, then you would probably have to notify the team that the package.json or bower.json changed and everyone would have to run "npm install" or "bower install". While this workflow could work, this is not very reliable! | ||
> Detects and updates local dependencies if package.json or bower.json version changed. | ||
Why? If your node_modules or bower_components folder is not under version control, then you would probably have to notify the team that the package.json or bower.json changed and everyone would have to run "npm install" or "bower install". While this workflow could work, this is not very reliable! | ||
Now you have grunt-local-deps-update which notfies a team member with outdated dependencies and auto install them if enabled. | ||
@@ -16,3 +16,3 @@ | ||
```shell | ||
npm install https://github.com/virtser/grunt-local-deps-update --save-dev | ||
npm install grunt-local-deps-update --save-dev | ||
``` | ||
@@ -31,3 +31,3 @@ | ||
### Overview | ||
The task doesn't require any configuration. | ||
The task doesn't require any configuration. | ||
Simply add it to your default task, or make sure it's the first task being executed. | ||
@@ -65,4 +65,4 @@ | ||
npmCheck: true, | ||
bowerCheck: true, | ||
warnOnly: false | ||
bowerCheck: false, | ||
warnOnly: true | ||
} | ||
@@ -69,0 +69,0 @@ }, |
@@ -5,4 +5,3 @@ /* | ||
* | ||
* Copyright (c) 2014 Erwan Jegouzo | ||
* Copyright (c) 2016 David Virtser | ||
* Copyright (c) 2016 Erwan Jegouzo, David Virtser | ||
* Licensed under the MIT license. | ||
@@ -20,4 +19,4 @@ */ | ||
npmCheck: true, | ||
bowerCheck: true, | ||
warnOnly: false | ||
bowerCheck: false, | ||
warnOnly: true | ||
}); | ||
@@ -24,0 +23,0 @@ |
10999
168