Commit project
This commit is contained in:
parent
28471965a0
commit
3ac017a5ad
1030 changed files with 94062 additions and 0 deletions
8
node_modules/nodemon/doc/cli/authors.txt
generated
vendored
Normal file
8
node_modules/nodemon/doc/cli/authors.txt
generated
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
|
||||
Remy Sharp - author and maintainer
|
||||
http://github.com/remy
|
||||
http://twitter.com/rem
|
||||
|
||||
Contributors: https://github.com/remy/nodemon/graphs/contributors ❤︎
|
||||
|
||||
Please help make nodemon better: https://github.com/remy/nodemon/
|
44
node_modules/nodemon/doc/cli/config.txt
generated
vendored
Normal file
44
node_modules/nodemon/doc/cli/config.txt
generated
vendored
Normal file
|
@ -0,0 +1,44 @@
|
|||
|
||||
Typically the options to control nodemon are passed in via the CLI and are
|
||||
listed under the default nodemon --help command.
|
||||
|
||||
nodemon can also be configured via a local and global config file:
|
||||
|
||||
* $HOME/nodemon.json
|
||||
* $PWD/nodemon.json OR --config <file>
|
||||
* nodemonConfig in package.json
|
||||
|
||||
All config options in the .json file map 1-to-1 with the CLI options, so a
|
||||
config could read as:
|
||||
|
||||
{
|
||||
"ext": "*.pde",
|
||||
"verbose": true,
|
||||
"exec": "processing --sketch=game --run"
|
||||
}
|
||||
|
||||
There are a limited number of variables available in the config (since you
|
||||
could use backticks on the CLI to use a variable, backticks won't work in
|
||||
the .json config).
|
||||
|
||||
* {{pwd}} - the current directory
|
||||
* {{filename}} - the filename you pass to nodemon
|
||||
|
||||
For example:
|
||||
|
||||
{
|
||||
"ext": "*.pde",
|
||||
"verbose": true,
|
||||
"exec": "processing --sketch={{pwd}} --run"
|
||||
}
|
||||
|
||||
The global config file is useful for setting up default executables
|
||||
instead of repeating the same option in each of your local configs:
|
||||
|
||||
{
|
||||
"verbose": true,
|
||||
"execMap": {
|
||||
"rb": "ruby",
|
||||
"pde": "processing --sketch={{pwd}} --run"
|
||||
}
|
||||
}
|
41
node_modules/nodemon/doc/cli/help.txt
generated
vendored
Normal file
41
node_modules/nodemon/doc/cli/help.txt
generated
vendored
Normal file
|
@ -0,0 +1,41 @@
|
|||
Usage: nodemon [options] [script.js] [args]
|
||||
|
||||
Options:
|
||||
|
||||
--config file ............ alternate nodemon.json config file to use
|
||||
-e, --ext ................ extensions to look for, ie. js,jade,hbs.
|
||||
-x, --exec app ........... execute script with "app", ie. -x "python -v".
|
||||
-w, --watch dir........... watch directory "dir" or files. use once for
|
||||
each directory or file to watch.
|
||||
-i, --ignore ............. ignore specific files or directories.
|
||||
-q, --quiet .............. minimise nodemon messages to start/stop only.
|
||||
-V, --verbose ............ show detail on what is causing restarts.
|
||||
-I, --no-stdin ........... don't try to read from stdin.
|
||||
-C, --on-change-only ..... execute script on change only, not startup
|
||||
--no-colors .............. disable color output
|
||||
-d, --delay n ............ debounce restart for "n" seconds.
|
||||
--exitcrash .............. exit on crash, allows use of nodemon with daemon
|
||||
tools like forever.js.
|
||||
-v, --version ............ current nodemon version.
|
||||
-h, --help ............... you're looking at it.
|
||||
--help <topic> ........... help on a specific feature. Try "--help topics".
|
||||
-- <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, .coffee,
|
||||
and .litcoffee by default.
|
||||
|
||||
To learn more about nodemon.json config: nodemon --help config
|
||||
See also the sample: https://github.com/remy/nodemon/wiki/Sample-nodemon.json
|
||||
|
||||
Examples:
|
||||
|
||||
$ nodemon server.js
|
||||
$ nodemon --config my/custom/nodemon.json server.js
|
||||
$ nodemon -w ../foo server.js apparg1 apparg2
|
||||
$ PORT=8000 nodemon --debug-brk server.js
|
||||
$ nodemon --exec python app.py
|
||||
$ nodemon --exec "make build" -e "styl hbs"
|
||||
$ nodemon app.js -- -v
|
||||
|
||||
For more details see http://github.com/remy/nodemon/
|
20
node_modules/nodemon/doc/cli/logo.txt
generated
vendored
Normal file
20
node_modules/nodemon/doc/cli/logo.txt
generated
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
; ;
|
||||
kO. x0
|
||||
KMX, .:x0kc. 'KMN
|
||||
0MMM0: 'oKMMMMMMMXd, ;OMMMX
|
||||
oMMMMMWKOONMMMMMMMMMMMMMWOOKWMMMMMx
|
||||
OMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMK.
|
||||
.oWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMd.
|
||||
KMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMN
|
||||
KMMMMMMMMMMMMMMW0k0WMMMMMMMMMMMMMMW
|
||||
KMMMMMMMMMMMNk:. :xNMMMMMMMMMMMW
|
||||
KMMMMMMMMMMK OMMMMMMMMMMW
|
||||
KMMMMMMMMMMO xMMMMMMMMMMN
|
||||
KMMMMMMMMMMO xMMMMMMMMMMN
|
||||
KMMMMMMMMMMO xMMMMMMMMMMN
|
||||
KMMMMMMMMMMO xMMMMMMMMMMN
|
||||
KMMMMMMMMMMO xMMMMMMMMMMN
|
||||
KMMMMMMMMMNc ;NMMMMMMMMMN
|
||||
KMMMMMW0o' .lOWMMMMMN
|
||||
KMMKd; ,oKMMN
|
||||
kX: ,K0
|
6
node_modules/nodemon/doc/cli/topics.txt
generated
vendored
Normal file
6
node_modules/nodemon/doc/cli/topics.txt
generated
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
|
||||
config ................... default config options using nodemon.json
|
||||
authors .................. contributors to this project
|
||||
whoami ................... I, AM, NODEMON \o/
|
||||
|
||||
Please contribute http://github.com/remy/nodemon/
|
3
node_modules/nodemon/doc/cli/usage.txt
generated
vendored
Normal file
3
node_modules/nodemon/doc/cli/usage.txt
generated
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
Usage: nodemon [nodemon options] [script.js] [args]
|
||||
|
||||
See "nodemon --help" for more.
|
9
node_modules/nodemon/doc/cli/whoami.txt
generated
vendored
Normal file
9
node_modules/nodemon/doc/cli/whoami.txt
generated
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
__/\\\\\_____/\\\_______/\\\\\_______/\\\\\\\\\\\\_____/\\\\\\\\\\\\\\\__/\\\\____________/\\\\_______/\\\\\_______/\\\\\_____/\\\_
|
||||
_\/\\\\\\___\/\\\_____/\\\///\\\____\/\\\////////\\\__\/\\\///////////__\/\\\\\\________/\\\\\\_____/\\\///\\\____\/\\\\\\___\/\\\_
|
||||
_\/\\\/\\\__\/\\\___/\\\/__\///\\\__\/\\\______\//\\\_\/\\\_____________\/\\\//\\\____/\\\//\\\___/\\\/__\///\\\__\/\\\/\\\__\/\\\_
|
||||
_\/\\\//\\\_\/\\\__/\\\______\//\\\_\/\\\_______\/\\\_\/\\\\\\\\\\\_____\/\\\\///\\\/\\\/_\/\\\__/\\\______\//\\\_\/\\\//\\\_\/\\\_
|
||||
_\/\\\\//\\\\/\\\_\/\\\_______\/\\\_\/\\\_______\/\\\_\/\\\///////______\/\\\__\///\\\/___\/\\\_\/\\\_______\/\\\_\/\\\\//\\\\/\\\_
|
||||
_\/\\\_\//\\\/\\\_\//\\\______/\\\__\/\\\_______\/\\\_\/\\\_____________\/\\\____\///_____\/\\\_\//\\\______/\\\__\/\\\_\//\\\/\\\_
|
||||
_\/\\\__\//\\\\\\__\///\\\__/\\\____\/\\\_______/\\\__\/\\\_____________\/\\\_____________\/\\\__\///\\\__/\\\____\/\\\__\//\\\\\\_
|
||||
_\/\\\___\//\\\\\____\///\\\\\/_____\/\\\\\\\\\\\\/___\/\\\\\\\\\\\\\\\_\/\\\_____________\/\\\____\///\\\\\/_____\/\\\___\//\\\\\_
|
||||
_\///_____\/////_______\/////_______\////////////_____\///////////////__\///______________\///_______\/////_______\///_____\/////__
|
Loading…
Add table
Add a link
Reference in a new issue