Skip to content

Commit b959aeb

Browse files
committed
v4.1.0 / 2020-07-02
1 parent 905c7c0 commit b959aeb

3 files changed

Lines changed: 19 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
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:

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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",
@@ -11,7 +11,8 @@
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",

test/utils/run.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@ var touchFile = require('./touch-file');
33

44
function run(cmd, done) {
55
return spawn(cmd, function (out) {
6-
console.log(cmd, 1, out);
76
var touched = false;
87
if (!touched && out.match(/touch message.js/)) {
98
touchFile();
109
touched = true;
1110
return function (out2) {
12-
console.log(cmd, 2, out2);
1311
if (out2.match(/Restarting/)) {
1412
return { exit: done };
1513
}

0 commit comments

Comments
 (0)