Socket
Socket
Sign inDemoInstall

grunt-hub

Package Overview
Dependencies
9
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.7.0 to 1.0.0

26

package.json
{
"name": "grunt-hub",
"description": "A Grunt task to watch and run tasks on multiple Grunt projects",
"version": "0.7.0",
"version": "1.0.0",
"homepage": "https://github.com/shama/grunt-hub",

@@ -11,15 +11,7 @@ "author": {

},
"repository": {
"type": "git",
"url": "git://github.com/shama/grunt-hub.git"
},
"repository": "shama/grunt-hub",
"bugs": {
"url": "https://github.com/shama/grunt-hub/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/shama/grunt-hub/blob/master/LICENSE-MIT"
}
],
"license": "MIT",
"engines": {

@@ -29,12 +21,12 @@ "node": ">= 0.8.0"

"scripts": {
"test": "grunt nodeunit -v"
"test": "grunt"
},
"dependencies": {
"chalk": "~0.4.0",
"async": "~0.9.0",
"lodash": "~2.4.1"
"chalk": "^2.4.1",
"async": "^2.6.1",
"lodash": "^4.17.5"
},
"devDependencies": {
"grunt-contrib-jshint": "~0.8.0",
"grunt": "~0.4.0"
"grunt-contrib-jshint": "^2.0.0",
"grunt": "^1.0.3"
},

@@ -41,0 +33,0 @@ "keywords": [

@@ -141,2 +141,3 @@ # grunt-hub

* Please view the [commit history](https://github.com/shama/grunt-hub/commits/master) for future release history.
* 0.7.0 Update async to ~0.9.0, warn when files not found and finish task when idle. Thanks @dylancwood!

@@ -161,3 +162,3 @@ * 0.6.2 Fix syntax error. Thanks @eugeneiiim!

Copyright (c) 2013 Kyle Robinson Young
Copyright (c) 2018 Kyle Robinson Young
Licensed under the MIT license.

@@ -164,0 +165,0 @@

@@ -5,3 +5,3 @@ /*

*
* Copyright (c) 2013 Kyle Robinson Young
* Copyright (c) 2018 Kyle Robinson Young
* Licensed under the MIT license.

@@ -50,6 +50,10 @@ */

cliArgs = cliArgs.filter(function(currentValue) {
if (skipNext) return (skipNext = false);
if (skipNext) {
return (skipNext = false);
}
var out = /^--gruntfile(=?)/.exec(currentValue);
if (out) {
if (out[1] !== '=') skipNext = true;
if (out[1] !== '=') {
skipNext = true;
}
return false;

@@ -56,0 +60,0 @@ }

@@ -5,3 +5,3 @@ /*

*
* Copyright (c) 2013 Kyle Robinson Young
* Copyright (c) 2014 Kyle Robinson Young
* Licensed under the MIT license.

@@ -8,0 +8,0 @@ */

{
"name": "my-grunt-hub",
"version": "0.1.0",
"version": "1.0.0",
"description": "A grunt hub",
"repository": {
"type": "git",
"url": "git://github.com/user/repo.git"
},
"repository": "user/repo",
"devDependencies": {
"grunt": "~0.4.1"
"grunt": "^1.0.3"
}
}

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc