我想用grunt-html
任务来检查我的HTML文件。
我在本地安装任务与npm install grunt-html
和使用它grunt.js
如下:
module.exports = function (grunt) { grunt.loadNpmTasks('grunt-html'); grunt.initConfig({ htmllint:{ all:['*.html'] }, }); };
现在我想安装grunt-html
全局任务。
删除本地后,不幸的是grunt-html
节点模块和安装它在全球 grunt
无法加载任务。 在运行grunt htmllint
我得到:
>> Local Npm module "grunt-html" not found. Is it installed?
如果我删除grunt.loadNpmTasks('grunt-html');
从grunt.js
文件获得:
Task "htmllint" not found. Use --force to continue.
所以我的问题是如何用grunt-html
全球的装机量 ?