angularjs - Underscore mixin error -


i trying learn grunt tasks below example https://github.com/song-rate-mvc/angular-song-rate/tree/0.0.3

after command npm install, bower install during grunt dev below error "referenceerror: can't find variable: _" in app.js file

the error occurs in file app.js @

angular.module("myapp", [   'myapp.filters',   'myapp.services',   'myapp.directives',   'myapp.controllers' ]); //error occurs in below line. _.mixin(_.string.exports()); 

am missing anything...


Comments

Popular posts from this blog

java - Date formats difference between yyyy-MM-dd'T'HH:mm:ss and yyyy-MM-dd'T'HH:mm:ssXXX -

Fatal error: Call to undefined function menu_execute_active_handler() in drupal 7.9 -

python - RuntimeWarning: PyOS_InputHook is not available for interactive use of PyGTK -