grunt 合并壓縮js和css檔案(二)

來源:互聯網
上載者:User

標籤:concat   config   模組   node   html   www   mod   pac   載入   

具體node及檔案配置請看:

grunt 安裝使用(一)

 

要壓縮的檔案

--src/  ajax.js  assets.js  touch.js  zepto.js

 

目錄結構:

dist/node_modules/src/Gruntfile.jspackage.jsonpackage.json是依賴庫檔案Gruntfile.js是執行步驟程式

 

 

一、js合并壓縮

第一次需要先安裝grunt。執行 npm install -g grunt-cli 進行安裝。如果已經安裝,可以忽略。

 

1.package.json檔案

  安裝所需要的依賴檔案

{  "name": "grunt_test",  "version": "1.0.0",  "devDependencies": {    "grunt": "^1.0.1",    "grunt-contrib-concat": "^1.0.1",    "grunt-contrib-uglify": "^3.0.1"  }}

 

安裝命令:

cnpm install grunt-contrib-concat --save-dev

 

 2.Gruntfile.js

這個檔案是配設定檔

module.exports = function (grunt) {  // 項目配置  grunt.initConfig({    pkg: grunt.file.readJSON(‘package.json‘),    uglify:{      js:{        files:[{          expand: true,          cwd: ‘src/js‘,          src: ‘**/*.js‘,          dest: ‘dist/js‘        }]      }    },    concat:{      js:{         src: ‘dist/**/*.js‘,         dest: ‘dist/index.min.js‘      }    }  });  grunt.loadNpmTasks(‘grunt-contrib-uglify‘);  grunt.loadNpmTasks(‘grunt-contrib-concat‘);  // 預設任務  grunt.registerTask(‘default‘, [‘uglify‘, ‘concat‘]);}

 

這裡加深的是js 要合并檔案,同時需要載入模組及預設執行任務。

執行

grunt

在目前的目錄下產生dist目錄

dist / 

index.min.js

同理

css壓縮也是一樣的。

 

grunt 合并壓縮js和css檔案(二)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.