copperhead-clean
v0.0.4
Published
A clean task that deletes a list of files
Downloads
5
Readme
Copperhead Clean
A clean task that deletes a list of files
Installation
From your project root:
npm install copperhead-clean --save-dev
Usage
From your gulpfile.js
var gulp = require("gulp"),
cleanTask = require("copperhead-clean");
gulp.task(
"clean",
cleanTask(
{
src: "./tmp"
}
)
);
Contributing
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
Credits
License
GPL-3.0
For Mor Information
Changelog
- Ryan Wild 2015-10-21 Adding inital release with test case
- Ryan Wild 2015-11-20 Update README.md
- Ryan Wild 2015-11-20 Adding travis ci status badge
- Ryan Wild 2015-11-20 Updated delete task
- Ryan Wild 2015-10-21 Adding command to generate changelog
- Ryan Wild 2015-10-21 Adding inital release with test case