Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

grunt-contrib-clean

Package Overview
Dependencies
Maintainers
6
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-contrib-clean - npm Package Compare versions

Comparing version 0.6.0 to 0.7.0

CHANGELOG

51

package.json
{
"name": "grunt-contrib-clean",
"description": "Clean files and folders.",
"version": "0.6.0",
"homepage": "https://github.com/gruntjs/grunt-contrib-clean",
"description": "Clean files and folders",
"version": "0.7.0",
"author": {

@@ -10,17 +9,6 @@ "name": "Grunt Team",

},
"repository": {
"type": "git",
"url": "git://github.com/gruntjs/grunt-contrib-clean.git"
},
"bugs": {
"url": "https://github.com/gruntjs/grunt-contrib-clean/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/gruntjs/grunt-contrib-clean/blob/master/LICENSE-MIT"
}
],
"repository": "gruntjs/grunt-contrib-clean",
"license": "MIT",
"engines": {
"node": ">= 0.8.0"
"node": ">=0.10.0"
},

@@ -31,20 +19,29 @@ "scripts": {

"dependencies": {
"rimraf": "~2.2.1"
"rimraf": "^2.2.1"
},
"devDependencies": {
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-nodeunit": "~0.3.3",
"grunt-contrib-internal": "~0.4.10",
"grunt": "~0.4.0"
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-internal": "^0.4.10",
"grunt-contrib-jshint": "^0.11.0",
"grunt-contrib-nodeunit": "^0.4.1"
},
"peerDependencies": {
"grunt": "~0.4.0"
"grunt": ">=0.4.0"
},
"keywords": [
"gruntplugin"
"gruntplugin",
"clean",
"cleanup",
"remove",
"delete",
"del",
"rm",
"rmrf",
"rimraf"
],
"files": [
"tasks",
"LICENSE-MIT"
]
"tasks"
],
"appveyor_id": "li28411ceq3n833d"
}

@@ -1,4 +0,4 @@

# grunt-contrib-clean v0.6.0 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-clean.png?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-clean) <a href="https://ci.appveyor.com/project/gruntjs/grunt-contrib-clean"><img src="https://ci.appveyor.com/api/projects/status/li28411ceq3n833d/branch/master" alt="Build Status: Windows" height="18" /></a>
# grunt-contrib-clean v0.7.0 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-clean.svg?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-clean) [![Build Status: Windows](https://ci.appveyor.com/api/projects/status/li28411ceq3n833d/branch/master?svg=true)](https://ci.appveyor.com/project/gruntjs/grunt-contrib-clean/branch/master)
> Clean files and folders.
> Clean files and folders

@@ -8,3 +8,3 @@

## Getting Started
This plugin requires Grunt `~0.4.0`
This plugin requires Grunt `>=0.4.0`

@@ -37,3 +37,3 @@ If you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

Type: `Boolean`
Default: false
Default: `false`

@@ -44,3 +44,3 @@ This overrides this task from blocking deletion of folders outside current working dir (CWD). Use with caution.

Type: `Boolean`
Default: false
Default: `false`

@@ -93,2 +93,3 @@ Will log messages of what would happen if the task was ran but doesn't actually delete the files.

* 2015-11-13   v0.7.0   Dependency updates
* 2014-07-27   v0.6.0   Less verbose output. README updates.

@@ -108,2 +109,2 @@ * 2013-07-15   v0.5.0   Use rimraf directly, version 2.2.1 to fix issue on Windows. Add no-write option to mimic grunt.file.delete behavior.

*This file was generated on Sun Jul 27 2014 17:36:23.*
*This file was generated on Fri Nov 13 2015 14:04:25.*

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

*
* Copyright (c) 2014 Tim Branyen, contributors
* Copyright (c) 2015 Tim Branyen, contributors
* Licensed under the MIT license.

@@ -50,3 +50,3 @@ */

force: grunt.option('force') === true,
'no-write': grunt.option('no-write') === true,
'no-write': grunt.option('no-write') === true
});

@@ -58,5 +58,5 @@

});
grunt.log.ok(this.filesSrc.length + ' ' + grunt.util.pluralize(this.filesSrc.length, 'path/paths') + ' cleaned.');
grunt.log.ok(this.filesSrc.length + ' ' + grunt.util.pluralize(this.filesSrc.length, 'path/paths') + ' cleaned.');
});
};
SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc