Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
grunt-contrib-clean
Advanced tools
The grunt-contrib-clean package is a Grunt plugin used to clean files and directories. It is commonly used to delete files and folders as part of a build process, ensuring that old or unnecessary files do not clutter the project workspace.
Clean specific files
This feature allows you to clean specific files. In this example, all JavaScript files in the 'dist' directory will be deleted.
{
"clean": {
"build": ["dist/*.js"]
}
}
Clean specific directories
This feature allows you to clean specific directories. In this example, the entire 'dist' directory will be deleted.
{
"clean": {
"build": ["dist/"]
}
}
Clean multiple paths
This feature allows you to clean multiple paths. In this example, both the 'dist' and 'tmp' directories will be deleted.
{
"clean": {
"build": ["dist/", "tmp/"]
}
}
Force option
This feature allows you to use the 'force' option to delete files outside the current working directory. In this example, the directory at '/path/to/some/dir' will be deleted.
{
"clean": {
"options": {
"force": true
},
"build": ["/path/to/some/dir"]
}
}
Rimraf is a deep deletion module for Node.js, similar to the Unix command 'rm -rf'. It is often used to delete files and directories recursively and is known for its simplicity and effectiveness. Unlike grunt-contrib-clean, rimraf is not a Grunt plugin and can be used independently in any Node.js project.
Del is a Node.js module used for deleting files and directories. It is a Promise-based alternative to rimraf and provides a more modern API. Del can be used in any Node.js project and is not tied to Grunt, making it more flexible for various build systems.
Clean Webpack Plugin is a plugin for Webpack that removes/cleans the build folder(s) before building. It is specifically designed to work with Webpack, unlike grunt-contrib-clean, which is designed for Grunt. This makes it a better choice for projects using Webpack as their build tool.
Clean files and folders.
This plugin requires Grunt ~0.4.0
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-contrib-clean --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-contrib-clean');
This plugin was designed to work with Grunt 0.4.x. If you're still using grunt v0.3.x it's strongly recommended that you upgrade, but in case you can't please use v0.3.2.
Run this task with the grunt clean
command.
Task targets, files and options may be specified according to the grunt Configuring tasks guide.
Due to the destructive nature of this task, always be cautious of the paths you clean.
Type: Boolean
Default: false
This overrides grunt.file.delete
from blocking deletion of folders outside current working dir (CWD). Use with caution.
There are three formats you can use to run this task.
clean: ["path/to/dir/one", "path/to/dir/two"]
clean: {
build: ["path/to/dir/one", "path/to/dir/two"],
release: ["path/to/another/dir/one", "path/to/another/dir/two"]
},
clean: {
build: {
src: ["path/to/dir/one", "path/to/dir/two"]
}
}
Task submitted by Tim Branyen
This file was generated on Tue Apr 16 2013 13:28:15.
FAQs
Clean files and folders
The npm package grunt-contrib-clean receives a total of 327,985 weekly downloads. As such, grunt-contrib-clean popularity was classified as popular.
We found that grunt-contrib-clean demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.