mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-10 10:57:49 +00:00
Add Hash util and split out file helper.
This commit is contained in:
@@ -4,7 +4,7 @@ var _ = require('lodash'),
|
||||
async = require('async'),
|
||||
path = require('path');
|
||||
|
||||
var util = require('../common/util');
|
||||
var file = require('../common/file');
|
||||
|
||||
var basePath = path.join(__dirname, '..', '..'),
|
||||
distPath = path.join(basePath, 'dist'),
|
||||
@@ -23,8 +23,8 @@ function onComplete(error) {
|
||||
|
||||
function build() {
|
||||
async.series([
|
||||
util.copyFile(baseLodash, distLodash),
|
||||
util.minFile(distLodash)
|
||||
file.copy(baseLodash, distLodash),
|
||||
file.min(distLodash)
|
||||
], onComplete);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user