grunt 常用插件有哪些?

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 自动打开,很好用 :)

hanan198501/grunt-cptpl · GitHub
如果你的项目使用模板引擎,这款插件将必不可少。

你可能感兴趣的:(grunt 常用插件有哪些?)