0.0.2 • Published 8 years ago

ydel v0.0.2

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

ydel NPM version Build Status Dependency Status Coverage percentage

Global shell command to delete files and folder usings globs.

Installation

$ npm install [--save|-g] ydel

Usage

Bash

$ ydel ./../shelljs !../shelljs/.git;
$ ls -a ./../shelljs/;

# =>   ..  .git

Node

"use strict";

var YDel = require("ydel");
var ydel = new YDel();
var Cli = new require("n-cli");
var cli = new Cli({
  handleUncaughtException : false,
  argv : ["./test", "--verbose"]
});
describe("ydel", function () {
  it("should del!", function () {
    ydel.del(cli);
  });
});

License

MIT © s-a