From c86fede0851c21d430497ee571c36e92704f2b1a Mon Sep 17 00:00:00 2001 From: Andrew Miner Date: Sat, 24 Jan 2015 14:28:59 -0800 Subject: [PATCH] Add direct dependency on Underscore.js --- Gruntfile.coffee | 2 +- package.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Gruntfile.coffee b/Gruntfile.coffee index cd7b07e8b..5afb43168 100644 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -63,7 +63,7 @@ module.exports = (grunt)-> './dist/js/jquery.js': ['./node_modules/jquery/dist/jquery.js'] './dist/js/jquery-ui.js': ['./lib/jquery-ui/jquery-ui.js'] './dist/js/mocha.js': ['./node_modules/mocha/mocha.js'] - './dist/js/underscore.js': ['./node_modules/backbone/node_modules/underscore/underscore.js'] + './dist/js/underscore.js': ['./node_modules/underscore/underscore.js'] styles: files: [expand:true, cwd:'./src/css', src:'**/*.scss', dest:'./dist/src/css'] style_extras: diff --git a/package.json b/package.json index c2ed9ec2c..e05b1095e 100644 --- a/package.json +++ b/package.json @@ -39,6 +39,7 @@ "mocha": "^2.0.1", "sinon": "^1.12.2", "sinon-chai": "^2.6.0", + "underscore": "^1.7.0", "when": "^3.6.4" } }