replace git repo dependency with forked package. Closes #110

pull/116/merge
Maciej Winnicki 2018-02-07 22:57:04 +01:00
parent 0f0e8d5044
commit 6ad045f9e0
No known key found for this signature in database
GPG Key ID: 035AA4FA2183ADFA
4 changed files with 7 additions and 5 deletions

View File

@ -1,6 +1,6 @@
'use strict';
const daemon = require('daemon');
const daemon = require('daemon-fix41');
const fs = require('fs');
const defaultOptions = {

6
package-lock.json generated
View File

@ -613,8 +613,10 @@
"es5-ext": "0.10.37"
}
},
"daemon": {
"version": "github:zipang/daemon.node#48d0977c26fb3a6a44ae99aae3471b9d5a761085"
"daemon-fix41": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/daemon-fix41/-/daemon-fix41-1.1.2.tgz",
"integrity": "sha512-Si6it8at767j0OJEabYI4fIDLnOBjkguBL9QMp/A+QlHgZKMGN93XSTEc1joRd2FbYy59SWZP0GwQjEtcUdwkA=="
},
"dashdash": {
"version": "1.14.1",

View File

@ -12,7 +12,7 @@
"commander": "1.3.2",
"connect": "2.11.0",
"cookie": "0.1.0",
"daemon": "github:zipang/daemon.node#48d0977c26fb3a6a44ae99aae3471b9d5a761085",
"daemon-fix41": "1.1.2",
"socket.io": "^1.7.0",
"untildify": "^3.0.2"
},

View File

@ -1,6 +1,6 @@
'use strict';
const daemon = require('daemon');
const daemon = require('daemon-fix41');
const optionsParser = require('../lib/options_parser');
const daemonize = require('../lib/daemonize');
const sinon = require('sinon');