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

@ -7,7 +7,7 @@
module.exports = JenkinsReporter;
var Base = require('mocha/lib/reporters/base');
var _ = require('lodash');
var _ = require('lodash-node');
var chalk = require('chalk');
var makeJUnitXml = require('./make_j_unit_xml');
var fs = require('fs');