Questions tagged «gruntjs»

Grunt是用于JavaScript项目的基于任务的命令行构建工具和任务运行器。

1
如何监视子文件夹中的文件?
我的代码文件夹和文件是这样的,您永远都不知道其中有多少个子文件夹: js/sub1/a.js js/sub2/b.js js/sub3/sub31/c.js js/sub4/sub41/sub411/d.js 这是Gruntfile.js的一部分: grunt.initConfig({ watch: { src: { files: ['js/*.js'], tasks: [] } } }); Grunt无法使用监视我所有JavaScript文件的更改'js/*.js'。那么如何编写正确的文件路径表达式呢?

6
如何卸载npm包?
我已经安装了grunt使用sudo npm install grunt,现在无法删除它。 我试过了: $ sudo npm uninstall grunt 但这给了我一个WARN: npm WARN uninstall not installed in /home/kuba/projects/node_modules: "grunt-cli" 我也试过rm,remove和unlink。和-g选项,但这些选项提供: npm WARN uninstall not installed in /usr/lib/node_modules: "grunt" 但是我仍然可以从命令行运行grunt。 编辑: $ whereis grunt grunt: /usr/local/bin/grunt $ file /usr/local/bin/grunt /usr/local/bin/grunt: symbolic link to `../lib/node_modules/grunt/bin/grunt' $ ls /usr/local/lib/node_modules grunt jshint $ ls …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.