grunt使用入门(zz)

下面介绍grunt的基本使用方法,把前端项目中的对个js文件,合并到一块儿,并压缩。html

注意,例子用的是grunt 0.4.5版本,低版本可能在配置上有所不一样。前端

工具/原料

  • node

方法/步骤

  1. 首先用npm在global环境安装grunt-cli ,注意在任何目录下 install -g都是同样的node

    npm install -g grunt-clinpm

    grunt使用入门
    grunt使用入门
    grunt使用入门
  2. 安装grunt插件时项目中必定要package.json,因此在项目中加一个最简单的package.json。否则的话插件安装不上。json

    grunt使用入门
  3. 在项目目录下安装grunt grunt

    npm  instal grunt --save-dev工具

    grunt使用入门
  4. 我在前端项目中常常须要concat和压缩,因此一下只掩饰这两个插件spa

    npm install grunt-contrib-concat grunt-contrib-uglify --save-dev插件

    grunt使用入门
  5. 把开发目录下的全部js,合并到dist目录保存为main.js3d

    concat: {

            dist: {

                // the files to concatenate

                src: ['src/*.js'],

                // the location of the resulting JS file

                dest: 'dist/main.js'

            }

        }

    把合并目录下的js,压缩

    uglify: {

            dist: {

                files: {

                    'dist/main.min.js': ['<%= concat.dist.dest %>']

                }

            }

        }

    若是不用'<%= concat.dist.dest %>',而是直接写路径dist/main.js,那极可能在压缩时main.js尚未生成

    所有代码以下图

    grunt使用入门
  6. 运行grunt后结果以下

    grunt使用入门
  7. 7

    这个是dist文件夹下的内容



相关文章
相关标签/搜索