Unable to find local grunt when using grung ngtemplates
按照设置grunt angular模板的说明:https://npmjs.org/package/grunt-angular-templates
我通过以下操作安装Grunt角模板:
1 | npm install grunt-angular-templates --save-dev |
它安装。
我的package.json非常简单:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | { "name":"grunt_example2", "version":"0.0.0", "description":"", "main":"index.js", "dependencies": { "grunt-angular-templates":"~0.4.7" }, "devDependencies": {}, "scripts": { "test":"echo "Error: no test specified" && exit 1" }, "author":"", "license":"BSD-2-Clause" } |
我创建了一个gruntfile.js作为
1 2 3 | module.exports = function(grunt) { grunt.loadTasks('grunt-angular-templates'); } |
当我这样做的时候:
1 | grunt ngtemplates |
我得到:致命错误:找不到本地呼噜声。
4但这对我如何解决这个问题毫无帮助。
有什么小窍门吗?
谢谢。
您需要在项目中安装grunt。请参见:http://gruntjs.com/getting started安装grunt和gruntplugins