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

grunt-contrib-clean

Package Overview
Dependencies
Maintainers
1
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.1.0 to 0.2.0

AUTHORS

8

package.json
{
"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

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