Use double quotes for AVA's glob, for cross-platform support

This commit is contained in:
Jeroen Engels 2016-03-06 17:15:16 +01:00
parent f7be0de327
commit bf2962e5ec
2 changed files with 3 additions and 3 deletions

View file

@ -9,7 +9,7 @@ This is a tool to help automate adding contributor acknowledgements according to
## Installation ## Installation
You can install it via `npm`: You can install it via `npm`:
``` ```console
npm install all-contributors-cli npm install all-contributors-cli
``` ```
@ -80,7 +80,7 @@ all-contributors generate
Use `add` to add new contributors to your project. They will be added to your configuration file. The contributors file will then be updated just as if you used the `generate` command. Use `add` to add new contributors to your project. They will be added to your configuration file. The contributors file will then be updated just as if you used the `generate` command.
``` ```console
# Add new contributor <username>, who made a contribution of type <contribution> # Add new contributor <username>, who made a contribution of type <contribution>
all-contributors add <username> <contribution> all-contributors add <username> <contribution>
# Example: # Example:

View file

@ -6,7 +6,7 @@
"all-contributors": "cli.js" "all-contributors": "cli.js"
}, },
"scripts": { "scripts": {
"test": "ava 'lib/**/*.test.js'", "test": "ava \"lib/**/*.test.js\"",
"test:w": "npm test -- --watch" "test:w": "npm test -- --watch"
}, },
"repository": { "repository": {