aboutsummaryrefslogtreecommitdiff
path: root/node_modules/nodemon/doc/cli/help.txt
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2022-06-04 08:51:19 +0200
committerMinteck <contact@minteck.org>2022-06-04 08:51:19 +0200
commitb22f6770c8bd084d66950655203c61dd701b3d90 (patch)
tree873d7fb19584ec2709b95cc1ca05a1fc7cfd0fc4 /node_modules/nodemon/doc/cli/help.txt
parent383285ecd5292bf9a825e05904955b937de84cc9 (diff)
downloadequestriadb-b22f6770c8bd084d66950655203c61dd701b3d90.tar.gz
equestriadb-b22f6770c8bd084d66950655203c61dd701b3d90.tar.bz2
equestriadb-b22f6770c8bd084d66950655203c61dd701b3d90.zip
Remove node_modules
Diffstat (limited to 'node_modules/nodemon/doc/cli/help.txt')
-rw-r--r--node_modules/nodemon/doc/cli/help.txt29
1 files changed, 0 insertions, 29 deletions
diff --git a/node_modules/nodemon/doc/cli/help.txt b/node_modules/nodemon/doc/cli/help.txt
deleted file mode 100644
index 7ba4ff2..0000000
--- a/node_modules/nodemon/doc/cli/help.txt
+++ /dev/null
@@ -1,29 +0,0 @@
- Usage: nodemon [options] [script.js] [args]
-
- Options:
-
- --config file ............ alternate nodemon.json config file to use
- -e, --ext ................ extensions to look for, ie. js,pug,hbs.
- -x, --exec app ........... execute script with "app", ie. -x "python -v".
- -w, --watch path ......... watch directory "path" or files. use once for
- each directory or file to watch.
- -i, --ignore ............. ignore specific files or directories.
- -V, --verbose ............ show detail on what is causing restarts.
- -- <your args> ........... to tell nodemon stop slurping arguments.
-
- Note: if the script is omitted, nodemon will try to read "main" from
- package.json and without a nodemon.json, nodemon will monitor .js, .mjs, .coffee,
- .litcoffee, and .json by default.
-
- For advanced nodemon configuration use nodemon.json: nodemon --help config
- See also the sample: https://github.com/remy/nodemon/wiki/Sample-nodemon.json
-
- Examples:
-
- $ nodemon server.js
- $ nodemon -w ../foo server.js apparg1 apparg2
- $ nodemon --exec python app.py
- $ nodemon --exec "make build" -e "styl hbs"
- $ nodemon app.js -- --config # pass config to app.js
-
- \x1B[1mAll options are documented under: \x1B[4mnodemon --help options\x1B[0m