-
Notifications
You must be signed in to change notification settings - Fork 15
/
Gruntfile.js
158 lines (134 loc) · 4.31 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
module.exports = function (grunt) {
grunt.initConfig({
// 脚本基本信息
pkg: grunt.file.readJSON('package.json'),
// 文件夹路径
dir: {
src: './src',
manifest: './src/manifest',
build: './build',
dist: './',
test: './src/test',
docs: './docs',
nodeModules: './node_modules'
},
// 任务配置
clean: {
build: ['<%= dir.build %>']
},
concat: {
build_gm: {
src: [
'<%= dir.manifest %>/greasemonkey.js',
'<%= dir.src %>/gdut-jwgl-helper.js'
],
dest: '<%= dir.build %>/gdut-jwgl-helper.gm.js'
}
},
connect: {
// 执行测试
test: {
options: {
base: [
'<%= dir.src %>',
'<%= dir.test %>',
'<%= dir.nodeModules %>',
'<%= dir.docs %>'
],
port: 9000,
useAvailabePort: true
}
}
},
copy: {
build_crx: {
files: [
{
src: '<%= dir.src %>/gdut-jwgl-helper.js',
dest: '<%= dir.build %>/crx/gdut-jwgl-helper.js'
},
{
src: '<%= dir.manifest %>/crx.json',
dest: '<%= dir.build %>/crx/manifest.json'
},
{
src: '<%= dir.src %>/vendor/jquery.min.js',
dest: '<%= dir.build %>/crx/jquery.min.js'
}
]
},
publish_gm: {
src: '<%= dir.build %>/gdut-jwgl-helper.gm.js',
dest: '<%= dir.dist %>/gdut-jwgl-helper.<%= pkg.version %>.js'
},
publish_crx: {
src: '<%= dir.build %>/crx.crx',
dest: '<%= dir.dist %>/gdut-jwgl-helper.<%= pkg.version %>.crx'
}
},
shell: {
build_crx: {
command: function () {
// 可以使用命令行参数 ``--chrome`` 来指定打包使用的 chrome
var chrome = grunt.option('chrome') || 'chromium',
pem = grunt.template.process(
'<%= dir.manifest %>/gdut-jwgl-helper.pem'
),
cmd = chrome + ' --pack-extension=<%= dir.build %>/crx';
if (grunt.file.exists(pem)) {
cmd += ' --pack-extension-key=' + pem;
} else {
cmd += '&& mv <%= dir.build %>/crx.pem ' + pem;
}
return cmd;
}
}
},
watch: {
src: {
files: ['<%= dir.src %>/**/*.js', '<%= dir.src %>/**/*.json'],
tasks: ['copy:build_crx', 'build_gm']
}
}
});
// 加载 grunt 的插件
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-connect');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-shell');
// 定义任务
// 将脚本打包成 crx 格式
grunt.registerTask('build_crx', [
'copy:build_crx',
'shell:build_crx'
]);
// 将脚本打包成 greasemonkey 脚本格式
grunt.registerTask('build_gm', [
'concat:build_gm'
]);
// 打包任务
grunt.registerTask('package', [
'clean:build',
'build_gm',
'build_crx'
]);
// 发布任务
grunt.registerTask('publish', [
'package',
'copy:publish_gm',
'copy:publish_crx'
]);
// 测试任务
grunt.registerTask('test', [
'connect:test:keepalive'
]);
// 默认任务:
// - 运行测试用例的静态服务器
// - 检测代码改动并自动打包
grunt.registerTask('default', [
'connect:test',
'watch:src'
]);
};