caipin 5 years atrás
parent
commit
a50ebed878
1 changed files with 3 additions and 21 deletions
  1. 3 21
      Gruntfile.js

+ 3 - 21
Gruntfile.js

@@ -2,20 +2,7 @@ module.exports = function(grunt) {
 
     //初始化配置grunt任务
     grunt.initConfig({
-<<<<<<< .mine
-        //pkg: grunt.file.readJSON('package.json'),
-        //uglify: {
-        //    options: {
-        //        banner: '/*! <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> */\n'
-        //    },
-        //    build: {
-        //        src: 'src/<%= pkg.name %>.js',
-        //        dest: 'build/<%= pkg.name %>.min.js'
-        //    }
-        //}
-
-
-=======
+
     	
     
     	concat: {//任务名称
@@ -28,18 +15,13 @@ module.exports = function(grunt) {
 //                dest: 'build/all.css'
 //            }
         }
->>>>>>> .theirs
+
 
     	
     });
 
-<<<<<<< .mine
-    // 加载包含 "uglify" 任务的插件。
-    //grunt.loadNpmTasks('grunt-contrib-uglify');
-=======
-    grunt.loadNpmTasks('grunt-contrib-concat');
 
->>>>>>> .theirs
+    grunt.loadNpmTasks('grunt-contrib-concat');
 
     //注册grunt默认任务
     grunt.registerTask('default', []);