File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# node-dev
22
3+ ## 4.1.0 / 2020-07-02
4+
5+ - Update devDependencies:
6+ - ` eslint ` : from ` v2.0.0 ` to ` v7.3.1 `
7+ - ` eslint-config-airbnb-base ` : from ` v3.0.1 ` to ` v14.2.0 `
8+ - ` eslint-plugin-import ` : from v` 1.8.1 ` to ` v2.22.0 `
9+ - ` tap ` : from ` v12.6.2 ` to ` v14.10.7 `
10+ - ` touch ` : from ` v1.0.0 ` to ` v3.1.0 `
11+ - Removed windows restriction for ` graceful_ipc `
12+ - No longer attempts to send ` SIGTERM ` to disconnected child processes
13+ - [ package.json] Set minimum node version to 10
14+ - [ package.json] Changed test script to be more cross-platform
15+ - [ tests] Split tests into 3 separate files
16+ - [ tests] Removed a few opportunities for race conditions to occur
17+ - [ tests] Some filesystems have single second precision, so tests now wait a minimum of 1 second before touching a file
18+
319## 4.0.0 / 2019-04-22
420
521- Update dependencies:
Original file line number Diff line number Diff line change 11{
22 "name" : " node-dev" ,
3- "version" : " 4.0 .0" ,
3+ "version" : " 4.1 .0" ,
44 "description" : " Restarts your app when files are modified" ,
55 "keywords" : [
66 " restart" ,
1111 ],
1212 "author" : " Felix Gnass" ,
1313 "contributors" : [
14- " Daniel Gasienica <daniel@gasienica.ch> (https://github.com/gasi/)"
14+ " Daniel Gasienica <daniel@gasienica.ch> (https://github.com/gasi)" ,
15+ " Bjorn Stromberg <bjorn@bjornstar.com> (https://bjornstar.com)"
1516 ],
1617 "repository" : {
1718 "type" : " git" ,
Original file line number Diff line number Diff line change @@ -3,13 +3,11 @@ var touchFile = require('./touch-file');
33
44function run ( cmd , done ) {
55 return spawn ( cmd , function ( out ) {
6- console . log ( cmd , 1 , out ) ;
76 var touched = false ;
87 if ( ! touched && out . match ( / t o u c h m e s s a g e .j s / ) ) {
98 touchFile ( ) ;
109 touched = true ;
1110 return function ( out2 ) {
12- console . log ( cmd , 2 , out2 ) ;
1311 if ( out2 . match ( / R e s t a r t i n g / ) ) {
1412 return { exit : done } ;
1513 }
You can’t perform that action at this time.
0 commit comments