-
Notifications
You must be signed in to change notification settings - Fork 2
/
CHANGELOG
36 lines (25 loc) · 1.17 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
0.1.10 - Added battery-saving technique
------------------------------
If the child process quits within one second, then wait for a file change to restart it. Otherwise, restart immediately.
0.1.9 - Fixed package.json
------------------------------
Thanks to a pull request from chapel, you can now install from npm again!
0.1.8 - Improved Options
------------------------------
New optional syntax:
restartr -c [cmd] [file1] [file2] ...
If you want to pass some args to the child process:
restartr -c [cmd] -a [arg1] -a [arg2] [file1] ... [fileN]
You may still use the old syntax:
restartr [cmd] [arg] [file1] ... [fileN]
New Features:
You can now order the arguments however you'd like.
You can also now have 0-n arguments for the child process.
New Dependencies:
optimist 0.0.3 (will be installed when you `npm install restartr`)
------------------------------
0.1.7 -- First public release
Features:
order-based options
takes a command, an arg to that command and everything else is a file to watch
starts a child process with argv[1] and passes it argv[2]. restarts when files at the path argv[3..-1] change.