chore(package): re-init package with commitizen and standard-release

This commit is contained in:
Pavel Pertsev
2018-05-16 12:54:46 +03:00
parent cb4e7a5643
commit eaf2328575
10640 changed files with 609660 additions and 117 deletions

29
node_modules/dotgitignore/README.md generated vendored Normal file
View File

@@ -0,0 +1,29 @@
# dotgitignore
[![Build Status](https://travis-ci.org/bcoe/dotgitignore.svg)](https://travis-ci.org/bcoe/dotgitignore)
find the closest .gitignore file, parse it, and apply ignore rules.
## Usage
_Given the following `.gitignore`:_
```
.DS_Store
node_modules
coverage
.nyc_output
```
```js
const dotgit = require('dotgitignore')()
dotgit.ignore('.DS_Store') // returns 'true'.
dotgit.ignore('README.md') // returns 'false'.
```
## API
* `require('dotgitignore')([opts])`: return instance of `dotgitignore`, optionally
configured with `opts`:
* `opts.cwd`: current working directory (defaults to process.cwd()).
* `dotgit.ignore(name)`: returns `true` if pattern is ignored, `false` otherwise.