Skip to content

Commit

Permalink
docs: Fixes to README (#918)
Browse files Browse the repository at this point in the history
[skip ci]

* docs: Document missing default ignores 

`.nyc_output` and `coverage`, which seem to come from here:
https://github.com/novemberborn/ignore-by-default/blob/master/index.js

* docs: forking should be cloning

I’ve expanded it to “cloning with git” for clarity.
  • Loading branch information
remy authored Oct 5, 2016
2 parents be5d4e8 + a331982 commit ab41ad7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ nodemon does **not** require *any* changes to your code or method of development

# Installation

Either through forking or by using [npm](http://npmjs.org) (the recommended way):
Either through cloning with git or by using [npm](http://npmjs.org) (the recommended way):

npm install -g nodemon

Expand Down Expand Up @@ -158,7 +158,7 @@ Patterns can also be ignored (but be sure to quote the arguments):

nodemon --ignore 'lib/*.js'

Note that by default, nodemon will ignore the `.git`, `node_modules`, `bower_components` and `.sass-cache` directories and *add* your ignored patterns to the list. If you want to indeed watch a directory like `node_modules`, you need to [override the underlying default ignore rules](https://github.com/remy/nodemon/blob/master/faq.md#overriding-the-underlying-default-ignore-rules).
Note that by default, nodemon will ignore the `.git`, `node_modules`, `bower_components`, `.nyc_output`, `coverage` and `.sass-cache` directories and *add* your ignored patterns to the list. If you want to indeed watch a directory like `node_modules`, you need to [override the underlying default ignore rules](https://github.com/remy/nodemon/blob/master/faq.md#overriding-the-underlying-default-ignore-rules).

## Application isn't restarting

Expand Down

0 comments on commit ab41ad7

Please sign in to comment.