Socket
Socket
Sign inDemoInstall

grunt-hub

Package Overview
Dependencies
6
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.6.0 to 0.6.1

2

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

@@ -6,0 +6,0 @@ "author": {

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

* 0.6.1 Fix path.resolve must be strings for ownGruntfile. Thanks @terribleplan!
* 0.6.0 Removed unneeded watch task. Fix issue with Gruntfiles not named Gruntfile. Removed deprecated grunt.util libs. Ability to override tasks via the cli.

@@ -143,0 +144,0 @@ * 0.5.0 Run hub tasks in parallel. Add concurrent option to hub. Better error handling/printing. Thanks @plestik!

@@ -29,4 +29,4 @@ /*

// Get it's own gruntfile
var ownGruntfile = grunt.option('gruntfile') || grunt.file.expand({filter: 'isFile'}, '{G,g}runtfile.{js,coffee}')[0];
ownGruntfile = path.resolve(process.cwd(), ownGruntfile);
var ownGruntfile += grunt.option('gruntfile') || grunt.file.expand({filter: 'isFile'}, '{G,g}runtfile.{js,coffee}')[0];
ownGruntfile = path.resolve(process.cwd(), ownGruntfile || '');

@@ -33,0 +33,0 @@ var lastGruntFileWritten;

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