Add direct dependency on Underscore.js

This commit is contained in:
Andrew Miner
2015-01-24 14:28:59 -08:00
parent f87b09f886
commit c86fede085
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -63,7 +63,7 @@ module.exports = (grunt)->
'./dist/js/jquery.js': ['./node_modules/jquery/dist/jquery.js'] './dist/js/jquery.js': ['./node_modules/jquery/dist/jquery.js']
'./dist/js/jquery-ui.js': ['./lib/jquery-ui/jquery-ui.js'] './dist/js/jquery-ui.js': ['./lib/jquery-ui/jquery-ui.js']
'./dist/js/mocha.js': ['./node_modules/mocha/mocha.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: styles:
files: [expand:true, cwd:'./src/css', src:'**/*.scss', dest:'./dist/src/css'] files: [expand:true, cwd:'./src/css', src:'**/*.scss', dest:'./dist/src/css']
style_extras: style_extras:
+1
View File
@@ -39,6 +39,7 @@
"mocha": "^2.0.1", "mocha": "^2.0.1",
"sinon": "^1.12.2", "sinon": "^1.12.2",
"sinon-chai": "^2.6.0", "sinon-chai": "^2.6.0",
"underscore": "^1.7.0",
"when": "^3.6.4" "when": "^3.6.4"
} }
} }