Skip to content

Commit

Permalink
Update utile to get rid of security warning (#1022)
Browse files Browse the repository at this point in the history
* Update utile to get rid of security warning

* Don't use external dependencies from utile
  • Loading branch information
kibertoad committed Mar 5, 2019
1 parent 01fb537 commit a11d6f9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/forever.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ var fs = require('fs'),
nssocket = require('nssocket'),
utile = require('utile'),
winston = require('winston'),
mkdirp = utile.mkdirp,
async = utile.async,
mkdirp = require('mkdirp'),
async = require('async'),
configUtils = require('./util/config-utils');

var forever = exports;
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,21 @@
"tools"
],
"dependencies": {
"async": "~0.2.9",
"cliff": "~0.1.9",
"clone": "^1.0.2",
"colors": "~0.6.2",
"flatiron": "~0.4.2",
"forever-monitor": "~1.7.0",
"nconf": "~0.6.9",
"mkdirp": "0.x.x",
"nssocket": "~0.5.1",
"object-assign": "^3.0.0",
"optimist": "~0.6.0",
"path-is-absolute": "~1.0.0",
"prettyjson": "^1.1.2",
"shush": "^1.0.0",
"utile": "~0.2.1",
"utile": "~0.3.0",
"winston": "~0.8.1"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion test/core/start-stop-json-array-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ var assert = require('assert'),
path = require('path'),
fs = require('fs'),
vows = require('vows'),
async = require('utile').async,
async = require('async'),
request = require('request'),
forever = require('../../lib/forever'),
runCmd = require('../helpers').runCmd;
Expand Down

0 comments on commit a11d6f9

Please sign in to comment.