aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/argument-parsers.js
diff options
context:
space:
mode:
authorRabsRincon <rubrinbla@gmail.com>2018-06-15 15:04:55 +0200
committerRabsRincon <rubrinbla@gmail.com>2018-06-15 15:04:55 +0200
commit7c18ffe8cf1a0900f101d4cbf135814ea9cfea28 (patch)
treed33fd13c5ef6141293dec45f59f73078a867122d /lib/compilers/argument-parsers.js
parent96c93c6bf3e125da3326081e5626e3e765e8a36e (diff)
downloadcompiler-explorer-7c18ffe8cf1a0900f101d4cbf135814ea9cfea28.tar.gz
compiler-explorer-7c18ffe8cf1a0900f101d4cbf135814ea9cfea28.zip
Drop underscore-node in favour of underscore.js
After some suprises about how outdated the node version was compared to the main project, it became clear we needed to do something. @jaredwy suggested using the main project as there's now nothing stopping us from using it after the switch to webpack. cc @mattgodbolDrop underscore-node in favour of underscore.js
Diffstat (limited to 'lib/compilers/argument-parsers.js')
-rw-r--r--lib/compilers/argument-parsers.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/argument-parsers.js b/lib/compilers/argument-parsers.js
index cb9b33442..b3fbcfe32 100644
--- a/lib/compilers/argument-parsers.js
+++ b/lib/compilers/argument-parsers.js
@@ -22,7 +22,7 @@
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
-const _ = require('underscore-node'),
+const _ = require('underscore'),
logger = require('../logger').logger,
utils = require('../utils');