grunt-contrib-clean
Advanced tools
Comparing version 0.1.0 to 0.2.0
{ | ||
"name": "grunt-contrib-clean", | ||
"description": "Clear files and folders.", | ||
"version": "0.1.0", | ||
"version": "0.2.0", | ||
"homepage": "https://github.com/gruntjs/grunt-contrib-clean", | ||
@@ -31,4 +31,4 @@ "author": { | ||
"dependencies": { | ||
"grunt-contrib-lib": "~0.1.0", | ||
"rimraf": "~2.0.2" | ||
"rimraf": "~2.0.2", | ||
"grunt-contrib-lib": "~0.1.0" | ||
}, | ||
@@ -38,2 +38,2 @@ "keywords": [ | ||
] | ||
} | ||
} |
@@ -16,3 +16,3 @@ # grunt-contrib-clean | ||
## Overview | ||
### Overview | ||
@@ -19,0 +19,0 @@ Inside your `grunt.js` file, add a section named `clean`. |
@@ -1,5 +0,8 @@ | ||
/** | ||
* Description: Clear files and folders. | ||
* Dependencies: rimraf | ||
* Contributor: @tbranyen | ||
/* | ||
* grunt-contrib-clean | ||
* http://gruntjs.com/ | ||
* | ||
* Copyright (c) 2012 Tim Branyen, contributors | ||
* Licensed under the MIT license. | ||
* https://github.com/gruntjs/grunt-contrib-clean/blob/master/LICENSE-MIT | ||
*/ | ||
@@ -10,9 +13,8 @@ | ||
var helpers = require('grunt-contrib-lib').init(grunt); | ||
grunt.registerMultiTask("clean", "Clear files and folders", function() { | ||
grunt.registerMultiTask("clean", "Clear files and folders", function() { | ||
var helpers = require('grunt-contrib-lib').init(grunt); | ||
var options = helpers.options(this); | ||
grunt.verbose.writeflags(options, "Options"); | ||
var paths = grunt.file.expand(this.file.src); | ||
@@ -19,0 +21,0 @@ |
Sorry, the diff of this file is not supported yet
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
4905
7
52