-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gruntfile.js
69 lines (62 loc) · 1.82 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
module.exports = function(grunt){
// 项目配置
//<% %>模板字符串可以引用任意的配置属性
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
concat: {
options: {
//定义一个用于插入合并输出文件之间的字符
separator: ';'
},
dist: {
src: ['src/*.js'],
dest: 'dest/<%= pkg.name %>.js'
}
},
//对于每个任务,包含option跟旗下的子任务
//banner 文件头生成一个注释
uglify: {
options: {
banner: '/*! <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> */\n'
},
build: {
src: '<%= concat.dist.dest %>',
dest: 'build/<%= pkg.name %>.min.js'
}
},
jshint: {
//定义用于检测的文件
files: ['gruntfile.js', 'src/*.js','dest/*.js','build/*.js'],
//配置JSHint (参考文档:http://www.jshint.com/docs)
options: {
//你可以在这里重写jshint的默认配置选项
globals: {
jQuery: true,
console: true,
module: true
}
}
},
watch: {
scripts: {
files: ['**/*.js'],
tasks: ['jshint'],
options: {
spawn: false,
},
},
},
});
grunt.event.on('watch', function(action, filepath) {
grunt.config('jshint.files', filepath);
});
// 加载插件,注意第一次要用 npm install grunt --save-dev来存储依赖
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.registerTask('test', ['jshint']);
// 默认任务
//如果运行grunt,对于concat来说将会遍历所有的目标, 并按任务指定的顺序处理每个目标
grunt.registerTask('default', ['concat','uglify']);
}