0.0.4 • Published 8 years ago

copperhead-clean v0.0.4

Weekly downloads
2
License
GPL-3.0
Repository
github
Last release
8 years ago

Build Status

Copperhead Clean

A clean task that deletes a list of files

Copperhead

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

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

Credits

License

GPL-3.0

For Mor Information

Copperhead

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