Launch Week Day 2: Introducing Reports: An Extensible Reporting Framework for Socket Data.Learn More
Socket
Book a DemoSign in
Socket

grunt-cleanempty

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-cleanempty

Clean empty files and folders.

latest
Source
npmnpm
Version
1.0.4
Version published
Maintainers
1
Created
Source

grunt-cleanempty NPM Version Build Status Dependency Status

Clean empty files and folders.

Getting Started

This plugin requires Grunt >=0.4

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-cleanempty --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-cleanempty');

The "cleanempty" task

Overview

In your project's Gruntfile, add a section named cleanempty to the data object passed into grunt.initConfig().

grunt.initConfig({
  cleanempty: {
    options: {
      // Task-specific options go here.
    },
    your_target: {
      // Target-specific file lists and/or options go here.
    },
  },
});

Options

options.files

Type: Boolean
Default value: true

Remove empty files or not.

options.folders

Type: Boolean
Default value: true

Remove empty folders or not.

options.force

Type: Boolean
Default value: false

Override the task from blocking deletion of folders outside current working dir (CWD). Use with caution.

options.noJunk

Type: Boolean
Default value: false

Consider folders that only have junk files in them to be empty. Use in conjunction with options.folders set to true.

Usage Examples

Default Options

grunt.initConfig({
  cleanempty: {
    options: {},
    src: ['src/testing/**/*', 'src/123/*'],
  },
});

Custom Options

grunt.initConfig({
  cleanempty: {
    options: {
      force: true,
    },
    testing: {
      options: {
        files: false,
      },
      src: ['src/testing/**/*']
    }
    123: {
      src: ['src/123/*'],
    },
  },
});

Roadmap Features

  • switch to asynchronous file system functions to better support grunt-concurrent

Release History

  • 1.0.4 supports grunt 1.x and npm 3.x
  • 1.0.3 added options.noJunk
  • 1.0.2 performance enhancement
  • 1.0.1 tweaked log verbosity
  • 1.0.0 release
  • 0.2.1 added tests
  • 0.2.0 added options.folders
  • 0.1.0 initial release

Keywords

clean

FAQs

Package last updated on 21 Feb 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts