-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
33 lines (33 loc) · 951 Bytes
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
module.exports = function (grunt) {
// 项目配置
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
uglify: {
options: {
banner: '/*! <%= pkg.file %> <%= grunt.template.today("yyyy-mm-dd") %> */\n'
},
build: {
src: [
// "src/lang.js",
"src/main.js",
"src/loader.js",
"src/TB.im.config.js",
"src/TB.im.lang.js",
"src/TB.im.message.js",
"src/TB.im.net.js",
"src/TB.im.js",
"src/TB.stat.js",
"src/TB.src.mobilewebim.log.js",
"src/TB.src.stat.js",
"src/TB.src.lightapp.stat.js",
"src/TB.src.mobilewebim.webim.js"
],
dest: 'static/<%= pkg.file %>.min.js'
}
}
});
// 加载提供"uglify"任务的插件
grunt.loadNpmTasks('grunt-contrib-uglify');
// 默认任务
grunt.registerTask('default', ['uglify']);
}