Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix
Rakefile
by deleting refs to removed install tasks
Previously when replacing dependency installation with `npm` rather than `rake`, there were still install task references found in `Rakefile` which should have been removed as well. ``` $ npm version patch v2.3.1 ... npm ERR! > minifying `mustache.js`... npm ERR! rake aborted! npm ERR! Don't know how to build task 'install_uglify' ``` Those `install_*` tasks does not exist anymore, as installing those dependencies are done with npm now. Refs #666
- Loading branch information