Skip to content

Commit 3782afe

Browse files
committed
- updated npm packages
- add git project files for windows and npm/CI - removed superfluous npm packages - made this a scoped npm package (to prevent release collisions with mainstream)
1 parent 1d6dd98 commit 3782afe

File tree

6 files changed

+1064
-24
lines changed

6 files changed

+1064
-24
lines changed

Diff for: .gitattributes

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
*.sh text eol=lf
2+
*.bat text eol=crlf
3+
*.php text eol=lf
4+
*.inc text eol=lf
5+
*.ini text eol=lf
6+
*.html text eol=lf
7+
*.json text eol=lf
8+
*.js text eol=lf
9+
*.ts text eol=lf
10+
*.jsdoc text eol=lf
11+
*.css text eol=lf
12+
*.less text eol=lf
13+
*.sass text eol=lf
14+
*.styl text eol=lf
15+
*.ini text eol=lf
16+
*.txt text eol=lf
17+
*.xml text eol=lf
18+
*.yml text eol=lf
19+
*.yaml text eol=lf
20+
*.md text eol=lf
21+
*.markdown text eol=lf
22+
*.json5 text eol=lf
23+
Makefile text eol=lf
24+
25+
*.pdf binary
26+
*.psd binary
27+
*.png binary
28+
*.jpg binary
29+
*.pptx binary
30+
*.xlsx binary

Diff for: .travis.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
11
language: node_js
22
node_js:
3-
- "0.10"
3+
- 'lts/*'
4+
- 10
5+
- 12
6+
- node
7+
script: npm run build
8+
before_install: make prep-ci
9+
after_success: npm run cov

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
A very simple `.gitignore` parser for node.js.
44

5-
[![Build Status](https://travis-ci.org/codemix/gitignore-parser.svg?branch=master)](https://travis-ci.org/codemix/gitignore-parser)
5+
[![Build Status](https://travis-ci.org/GerHobbelt/gitignore-parser.svg?branch=master)](https://travis-ci.org/GerHobbelt/gitignore-parser)
66

77

88
## Installation
@@ -13,7 +13,7 @@ A very simple `.gitignore` parser for node.js.
1313
## Usage
1414

1515
```js
16-
var parser = require('gitignore-parser'),
16+
var parser = require('@gerhobbelt/gitignore-parser'),
1717
fs = require('fs');
1818

1919
var gitignore = parser.compile(fs.readFileSync('.gitignore', 'utf8'));
@@ -47,7 +47,7 @@ files.filter(gitignore.denies);
4747
```
4848

4949

50-
### License
50+
## License
5151

5252
Apache 2, see [LICENSE.md](./LICENSE.md).
5353

0 commit comments

Comments
 (0)