grunt-newer
Advanced tools
Comparing version 0.5.1 to 0.5.2
{ | ||
"name": "grunt-newer", | ||
"description": "Run Grunt tasks with only those source files modified since the last successful run.", | ||
"version": "0.5.1", | ||
"version": "0.5.2", | ||
"homepage": "https://github.com/tschaub/grunt-newer", | ||
@@ -6,0 +6,0 @@ "author": { |
@@ -14,5 +14,6 @@ var fs = require('fs'); | ||
var tasks = []; | ||
var prefix = this.name; | ||
Object.keys(grunt.config(name)).forEach(function(target) { | ||
if (!/^_|^options$/.test(target)) { | ||
tasks.push('newer:' + name + ':' + target); | ||
tasks.push(prefix + ':' + name + ':' + target); | ||
} | ||
@@ -19,0 +20,0 @@ }); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
26650
35
688