欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

grunt使用入门 有大用

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

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

工具/原料
       

  • node

方法/步骤
       

  1. 1

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

    npm install -g grunt-cli

    grunt使用入门                    
    grunt使用入门                    
    grunt使用入门                    
  2. 2

    安装grunt插件时项目中一定要package.json,所以在项目中加一个最简单的package.json。不然的话插件安装不上。

    grunt使用入门                    
  3. 3

    在项目目录下安装grunt 

    npm  instal grunt --save-dev

    grunt使用入门                    
  4. 4

    我在前端项目中经常需要concat和压缩,所以一下只掩饰这两个插件

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

    grunt使用入门                    
  5. 5

    把开发目录下的所有js,合并到dist目录保存为main.js

    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. 6

    运行grunt后结果如下

    grunt使用入门                    
  7. 7

    这个是dist文件夹下的内容

    grunt使用入门                    
    END                

注意事项
       

  • 想了解更多相关内容可查询grunt官网
经验内容仅供参考,如果您需解决具体问题(尤其法律、医学等领域),建议您详细咨询相关领域专业人士。
作者声明:本篇经验系本人依照真实经历原创,未经许可,谢绝转载。


来自  https://jingyan.baidu.com/article/546ae185058da31149f28ce1.html


普通分类: