mirror of
https://github.com/all-contributors/cli.git
synced 2025-01-09 13:36:29 +00:00
Use double quotes for AVA's glob, for cross-platform support
This commit is contained in:
parent
f7be0de327
commit
bf2962e5ec
2 changed files with 3 additions and 3 deletions
|
@ -9,7 +9,7 @@ This is a tool to help automate adding contributor acknowledgements according to
|
|||
## Installation
|
||||
|
||||
You can install it via `npm`:
|
||||
```
|
||||
```console
|
||||
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.
|
||||
|
||||
```
|
||||
```console
|
||||
# Add new contributor <username>, who made a contribution of type <contribution>
|
||||
all-contributors add <username> <contribution>
|
||||
# Example:
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
"all-contributors": "cli.js"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "ava 'lib/**/*.test.js'",
|
||||
"test": "ava \"lib/**/*.test.js\"",
|
||||
"test:w": "npm test -- --watch"
|
||||
},
|
||||
"repository": {
|
||||
|
|
Loading…
Reference in a new issue