Use double quotes in script wildcards to support windows `cmd.exe`. (#761)

master
Umidbek Karimov 2017-02-21 19:49:07 +04:00 committed by Christopher Chedeau
parent 5cc21c5498
commit 278b489f38
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ prettier [opts] [filename ...]
For easier cross-platform usage, prettier has built-in glob support: For easier cross-platform usage, prettier has built-in glob support:
```bash ```bash
prettier --write 'src/**/*.js' 'bin/*.js' prettier --write "src/**/*.js" "bin/*.js"
``` ```
In the future we will have better support for formatting whole projects. In the future we will have better support for formatting whole projects.