mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-17 03:01:08 +01:00
Remove dependency, ignore package-lock.json
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user