Comparing version 0.1.4 to 0.1.5
@@ -6,3 +6,3 @@ # {%= name %} {%= badge("fury") %} | ||
Also see | ||
* [del](https://github.com/sindresorhus/del) if you need globbing. | ||
* [del](https://github.com/sindresorhus/del) if you need globbing. This lib was inspired by **del**, I wanted a quick solution that prevented accidental deletion of files outside the current working directory, but for individual files and without the extra dependencies. | ||
* [write](https://github.com/jonschlinkert/write) for writing files to disk. | ||
@@ -9,0 +9,0 @@ |
{ | ||
"name": "delete", | ||
"description": "Delete files and folders.", | ||
"version": "0.1.4", | ||
"description": "Delete files and folders and any intermediate directories if they exist (sync and async).", | ||
"version": "0.1.5", | ||
"homepage": "https://github.com/jonschlinkert/delete", | ||
@@ -41,3 +41,2 @@ "author": { | ||
"glob", | ||
"gulpfriendly", | ||
"inside", | ||
@@ -44,0 +43,0 @@ "path", |
# delete [![NPM version](https://badge.fury.io/js/delete.png)](http://badge.fury.io/js/delete) | ||
> Delete files and folders. | ||
> Delete files and folders and any intermediate directories if they exist (sync and async). | ||
Also see | ||
* [del](https://github.com/sindresorhus/del) if you need globbing. | ||
* [del](https://github.com/sindresorhus/del) if you need globbing. This lib was inspired by **del**, I wanted a quick solution that prevented accidental deletion of files outside the current working directory, but for individual files and without the extra dependencies. | ||
* [write](https://github.com/jonschlinkert/write) for writing files to disk. | ||
@@ -53,2 +53,2 @@ | ||
_This file was generated by [verb-cli](https://github.com/assemble/verb-cli) on June 28, 2014._ | ||
_This file was generated by [verb-cli](https://github.com/assemble/verb-cli) on September 22, 2014._ |
@@ -10,4 +10,4 @@ /*! | ||
var expect = require('chai').expect; | ||
var del = require('../'); | ||
var write = require('write'); | ||
var del = require('..'); | ||
@@ -14,0 +14,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
7875