首页 > 代码库 > grunt 常用插件有哪些?

grunt 常用插件有哪些?

作者:顾城
链接:https://www.zhihu.com/question/21917526/answer/19747259
来源:知乎
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
(GruntJS——的介绍和使用)(https://segmentfault.com/a/1190000000353114)

Grunt plugin: Plugins - Grunt: The JavaScript Task Runner

CSS
  • gruntjs/grunt-contrib-compass ?? GitHub 平常主要用Scss
  • gruntjs/grunt-contrib-less ?? GitHub 因为要用Bootstrap
JS
  • gruntjs/grunt-contrib-coffee ?? GitHub 平常主要用Coffee
  • gruntjs/grunt-contrib-jshint ?? GitHub 检查代码中糟糕的部分,大家都用
Automation自动化
  • sindresorhus/load-grunt-tasks 路 GitHub Load multiple grunt tasks using globbing patterns. 有了这个你就不用手动加载Grunt任务了
  • sindresorhus/time-grunt 路 GitHub Displays the elapsed execution time of grunt tasks 计算任务执行的时间
  • gruntjs/grunt-contrib-watch ?? GitHub Run predefined tasks whenever watched file patterns are added, changed or deleted. 自动刷新,这个应该每个人都用的吧
  • sindresorhus/grunt-concurrent 路 GitHub Run grunt tasks concurrently 并发执行任务
  • gruntjs/grunt-contrib-clean ?? GitHub Clean files and folders. 做清洁工作,不然会残留很多没有用的文件
  • yeoman/grunt-usemin 路 GitHub 怎么说呢,反正一个很好用的东西 :)
  • cbas/grunt-rev 路 GitHub
  • gruntjs/grunt-contrib-copy · GitHub Copy files and folders. 自动复制粘贴文件的
  • gruntjs/grunt-contrib-uglify ?? GitHub Concat and Minify JavaScript files with UglifyJS. 压缩JS文件的
  • gruntjs/grunt-contrib-htmlmin ?? GitHub Minify HTML
  • gruntjs/grunt-contrib-imagemin ?? GitHub Minify PNG and JPEG images 优化图片的,其实没怎么用
  • gruntjs/grunt-contrib-connect ?? GitHub Start a connect web server. 在本地模拟一个web server
  • jsoverson/grunt-open · GitHub Open urls and files from a grunt task 自动打开,很好用 :)

grunt 常用插件有哪些?