我正在尝试使用grunt插件dump_dir为pdfmake生成vfs_font.js文件。
我安装了 grunt~0.4.2 ,配置了 Gruntfile.js ,安装了 grunt_dump_dir 插件并检查了 package.json 档案。
然而,每当我尝试启动grunt dump-dir时,我都会收到以下错误:
Warning: Task "dump-dir" not found. Use --force to continue. Aborted due to warnings.
有什么想法吗?
答案 0 :(得分:0)
在您的Gruntfile中,在传递给grunt.initConfig的json中,应该有一个名为" dump_dir"的任务。例如, 任务"你好"在下面的Gruntfile中可以作为grunt hello运行,
grunt.initConfig({
"hello":{},
});