use lodash-node rather than vanilla lodash so that lodash doesn't attach to require js even when it's available.

This commit is contained in:
Spencer Alger
2014-02-11 15:43:57 -07:00
parent ad90cbd52c
commit 03f7a844a3
22 changed files with 26 additions and 26 deletions

View File

@ -1,7 +1,7 @@
var fs = require('fs');
var spawn = require('../_spawn');
var async = require('async');
var _ = require('lodash');
var _ = require('lodash-node');
var root = require('path').join(__dirname, '../..');
var bowerDir = root + '/src/bower_es_js';