run update
This commit is contained in:
parent
f09e88ae65
commit
6f478f9e37
@ -3,15 +3,25 @@ root = true
|
|||||||
|
|
||||||
[*]
|
[*]
|
||||||
indent_style = space
|
indent_style = space
|
||||||
indent_size = 2
|
|
||||||
end_of_line = lf
|
end_of_line = lf
|
||||||
charset = utf-8
|
charset = utf-8
|
||||||
|
indent_size = 2
|
||||||
trim_trailing_whitespace = true
|
trim_trailing_whitespace = true
|
||||||
insert_final_newline = true
|
insert_final_newline = true
|
||||||
|
|
||||||
|
[*.json]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 2
|
||||||
|
|
||||||
|
[*.yml]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 2
|
||||||
|
|
||||||
[*.md]
|
[*.md]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 2
|
||||||
trim_trailing_whitespace = false
|
trim_trailing_whitespace = false
|
||||||
|
|
||||||
[test/fixtures/*]
|
[test/fixtures/*]
|
||||||
insert_final_newline = false
|
|
||||||
trim_trailing_whitespace = false
|
trim_trailing_whitespace = false
|
||||||
|
insert_final_newline = false
|
||||||
11
.gitattributes
vendored
11
.gitattributes
vendored
@ -1 +1,10 @@
|
|||||||
*.* text eol=lf
|
# Enforce Unix newlines
|
||||||
|
* text eol=lf
|
||||||
|
|
||||||
|
# binaries
|
||||||
|
*.ai binary
|
||||||
|
*.psd binary
|
||||||
|
*.jpg binary
|
||||||
|
*.gif binary
|
||||||
|
*.png binary
|
||||||
|
*.jpeg binary
|
||||||
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,3 +1,4 @@
|
|||||||
|
*.DS_Store
|
||||||
*.DS_store
|
*.DS_store
|
||||||
*.sublime-*
|
*.sublime-*
|
||||||
_gh_pages
|
_gh_pages
|
||||||
@ -11,3 +12,4 @@ tmp
|
|||||||
TODO.md
|
TODO.md
|
||||||
vendor
|
vendor
|
||||||
support.js
|
support.js
|
||||||
|
example.js
|
||||||
|
|||||||
@ -8,11 +8,11 @@
|
|||||||
"immed": true,
|
"immed": true,
|
||||||
"latedef": false,
|
"latedef": false,
|
||||||
"laxcomma": false,
|
"laxcomma": false,
|
||||||
|
"mocha": true,
|
||||||
"newcap": true,
|
"newcap": true,
|
||||||
"noarg": true,
|
"noarg": true,
|
||||||
"node": true,
|
"node": true,
|
||||||
"sub": true,
|
"sub": true,
|
||||||
"undef": "var",
|
"undef": true,
|
||||||
"unused": true,
|
"unused": true
|
||||||
"mocha": true
|
}
|
||||||
}
|
|
||||||
8
.travis.yml
Normal file
8
.travis.yml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
sudo: false
|
||||||
|
language: node_js
|
||||||
|
node_js:
|
||||||
|
- "0.10"
|
||||||
|
- "0.12"
|
||||||
|
- "iojs"
|
||||||
|
git:
|
||||||
|
depth: 10
|
||||||
19
.verb.md
19
.verb.md
@ -1,4 +1,4 @@
|
|||||||
# {%= name %} {%= badge("fury") %}
|
# {%= name %} {%= badge("fury") %} {%= badge("travis") %}
|
||||||
|
|
||||||
> {%= description %}
|
> {%= description %}
|
||||||
|
|
||||||
@ -98,23 +98,20 @@ The resulting object would be:
|
|||||||
base: 'a/b' }
|
base: 'a/b' }
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Related
|
||||||
## Run tests
|
{%= related(['glob-base', 'glob-parent', 'is-glob', 'glob-path-regex', 'micromatch']) %}
|
||||||
|
|
||||||
Install dev dependencies:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
npm i -d && npm test
|
|
||||||
```
|
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue]({%= bugs.url %})
|
{%= include("contributing") %}
|
||||||
|
|
||||||
|
## Tests
|
||||||
|
{%= include("tests") %}
|
||||||
|
|
||||||
## Author
|
## Author
|
||||||
{%= include("author") %}
|
{%= include("author") %}
|
||||||
|
|
||||||
## License
|
## License
|
||||||
{%= copyright() %}
|
{%= copyright({year: 2014}) %}
|
||||||
{%= license() %}
|
{%= license() %}
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|||||||
2
LICENSE
2
LICENSE
@ -1,6 +1,6 @@
|
|||||||
The MIT License (MIT)
|
The MIT License (MIT)
|
||||||
|
|
||||||
Copyright (c) 2015 Jon Schlinkert
|
Copyright (c) 2015, Jon Schlinkert.
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
|||||||
21
README.md
21
README.md
@ -1,4 +1,4 @@
|
|||||||
# parse-glob [](http://badge.fury.io/js/parse-glob)
|
# parse-glob [](http://badge.fury.io/js/parse-glob) [](https://travis-ci.org/jonschlinkert/parse-glob)
|
||||||
|
|
||||||
> Parse a glob pattern into an object of tokens.
|
> Parse a glob pattern into an object of tokens.
|
||||||
|
|
||||||
@ -102,17 +102,24 @@ The resulting object would be:
|
|||||||
base: 'a/b' }
|
base: 'a/b' }
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Related
|
||||||
|
* [glob-base](https://github.com/jonschlinkert/glob-base): Split a glob into a base path and a pattern.
|
||||||
|
* [glob-parent](https://github.com/es128/glob-parent): Strips glob magic from a string to provide the parent path
|
||||||
|
* [is-glob](https://github.com/jonschlinkert/is-glob): Returns `true` if the given string looks like a glob pattern.
|
||||||
|
* [glob-path-regex](https://github.com/regexps/glob-path-regex): Regular expression for matching the parts of glob pattern.
|
||||||
|
* [micromatch](https://github.com/jonschlinkert/micromatch): Glob matching for javascript/node.js. A faster alternative to minimatch (10-45x faster on avg), with all the features you're used to using in your Grunt and gulp tasks.
|
||||||
|
|
||||||
## Run tests
|
## Contributing
|
||||||
|
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/jonschlinkert/parse-glob/issues)
|
||||||
|
|
||||||
Install dev dependencies:
|
|
||||||
|
## Tests
|
||||||
|
Install dev dependencies.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
npm i -d && npm test
|
npm i -d && npm test
|
||||||
```
|
```
|
||||||
|
|
||||||
## Contributing
|
|
||||||
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/jonschlinkert/parse-glob/issues)
|
|
||||||
|
|
||||||
## Author
|
## Author
|
||||||
|
|
||||||
@ -122,9 +129,9 @@ Pull requests and stars are always welcome. For bugs and feature requests, [plea
|
|||||||
+ [twitter/jonschlinkert](http://twitter.com/jonschlinkert)
|
+ [twitter/jonschlinkert](http://twitter.com/jonschlinkert)
|
||||||
|
|
||||||
## License
|
## License
|
||||||
Copyright (c) 2015 Jon Schlinkert
|
Copyright (c) 2014-2015 Jon Schlinkert
|
||||||
Released under the MIT license
|
Released under the MIT license
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
_This file was generated by [verb](https://github.com/assemble/verb) on February 17, 2015._
|
_This file was generated by [verb-cli](https://github.com/assemble/verb-cli) on March 04, 2015._
|
||||||
|
|||||||
Reference in New Issue
Block a user