Skip to content

Commit

Permalink
Remove dependency, ignore package-lock.json
Browse files Browse the repository at this point in the history
  • Loading branch information
pitaj committed Jun 1, 2017
1 parent 44e55d2 commit 9a3b684
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -63,3 +63,4 @@ build
*.log
test/files/normalise.jpg.png
test/files/normalise-resized.jpg
package-lock.json
3 changes: 1 addition & 2 deletions package.json
Expand Up @@ -46,7 +46,6 @@
"json-2-csv": "^2.0.22",
"less": "^2.0.0",
"lodash": "^4.17.4",
"lodash.padstart": "^4.6.1",
"logrotate-stream": "^0.2.3",
"lru-cache": "4.0.2",
"mime": "^1.3.4",
Expand Down Expand Up @@ -138,4 +137,4 @@
"url": "https://github.com/barisusakli"
}
]
}
}
4 changes: 2 additions & 2 deletions src/meta/build.js
Expand Up @@ -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;
Expand Down Expand Up @@ -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);
}

Expand Down

0 comments on commit 9a3b684

Please sign in to comment.