Remove dependency, ignore package-lock.json

This commit is contained in:
Peter Jaszkowiak
2017-06-01 14:04:05 -06:00
parent 44e55d2a98
commit 9a3b684228
3 changed files with 4 additions and 4 deletions

View File

@@ -3,7 +3,7 @@
var async = require('async');
var winston = require('winston');
var nconf = require('nconf');
var padstart = require('lodash.padstart');
var _ = require('lodash');
var cacheBuster = require('./cacheBuster');
var meta;
@@ -122,7 +122,7 @@ function buildTargets(targets, parallel, callback) {
}));
all(targets, function (target, next) {
targetHandlers[target](parallel, step(padstart(target, length) + ' ', next));
targetHandlers[target](parallel, step(_.padStart(target, length) + ' ', next));
}, callback);
}