run update

This commit is contained in:
jonschlinkert 2015-03-04 16:45:14 -05:00
parent f09e88ae65
commit 6f478f9e37
8 changed files with 59 additions and 26 deletions

View File

@ -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
View File

@ -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
View File

@ -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

View File

@ -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
View File

@ -0,0 +1,8 @@
sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
git:
depth: 10

View File

@ -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() %}
*** ***

View File

@ -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

View File

@ -1,4 +1,4 @@
# parse-glob [![NPM version](https://badge.fury.io/js/parse-glob.svg)](http://badge.fury.io/js/parse-glob) # parse-glob [![NPM version](https://badge.fury.io/js/parse-glob.svg)](http://badge.fury.io/js/parse-glob) [![Build Status](https://travis-ci.org/jonschlinkert/parse-glob.svg)](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._