Add lodash dependency to lib/elevate.coffee

Depedency was missing and thus elevating functions threw errors.
This commit is contained in:
Juan Cruz Viotti 2015-04-17 09:22:21 -04:00
parent 9c65d11e66
commit a6dc155028
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,7 @@
(function() {
var isWindows, os, path;
var _, isWindows, os, path;
_ = require('lodash');
os = require('os');

View File

@ -1,3 +1,4 @@
_ = require('lodash')
os = require('os')
path = require('path')