码迷,mamicode.com
首页 > 其他好文 > 详细

前端grunt 配置 concat

时间:2016-03-24 16:01:02      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:

需求:前端切页面,每个页面公共头部尾部

 1 module.exports=function(grunt){
 2     
 3     // Project configuration.
 4     grunt.initConfig({
 5         pkg: grunt.file.readJSON(‘package.json‘),
 6         concat: {
 7             one:{
 8                 src:[‘cixi/html/头部.html‘,‘cixi/html/1.html‘,‘cixi/html/尾部.html‘],
 9                 dest:‘cixi/html/测试.html‘
10             }
11         },
12         watch:{
13             html:{
14                 files: [‘cixi/html/*.html‘],
15                   tasks: [‘concat‘]
16             }
17         }
18     });
19     // 加载包含 "uglify" 任务的插件。
20     grunt.loadNpmTasks(‘grunt-contrib-concat‘);
21     
22     grunt.loadNpmTasks(‘grunt-contrib-watch‘);
23 
24     // 默认被执行的任务列表。
25     grunt.registerTask(‘default‘, [‘concat‘,‘watch‘]);
26 
27 };

 

前端grunt 配置 concat

标签:

原文地址:http://www.cnblogs.com/lmw425317/p/5315592.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!