1234567891011121314151617181920212223242526272829 |
- module.exports = function(grunt) {
- //初始化配置grunt任务
- grunt.initConfig({
-
-
- concat: {//任务名称
- js: {
- src: ['global/js/cloud/curing.js','global/js/cloud/curingFN.js','global/js/cloud/curingHtml.js'],
- dest: 'global/js/cloud/curing.min.js'
- },
- // css: {
- // src: ['css/*.css'],
- // dest: 'build/all.css'
- // }
- }
-
- });
- grunt.loadNpmTasks('grunt-contrib-concat');
- //注册grunt默认任务
- grunt.registerTask('default', []);
- };
|