forked from web-scrobbler/web-scrobbler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
347 lines (320 loc) · 7.4 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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
'use strict';
module.exports = function(grunt) {
let isTravisCi = (process.env.TRAVIS === 'true');
const jsFiles = [
// Connectors
'connectors/**/*.js',
// Core files
'*.js', 'core/**/*.js', 'options/*.js', 'popups/*.js',
// Scripts
'scripts/*.js',
// Tests
'tests/**/*.js'
];
const jsonFiles = ['*.json', '.stylelintrc'];
const htmlFiles = ['options/*.html', 'popups/*.html', 'dialogs/**/*.html'];
const cssFiles = [
'options/options.css', 'popups/*.css'
];
const extensionSources = [
'connectors/**', 'core/**', 'icons/**',
'options/**', 'popups/**', 'vendor/**',
'manifest.json', 'README.md', 'LICENSE.txt',
// Skip files
'!core/content/testReporter.js', '!icons/src/**',
];
const buildDir = 'build';
const packageName = 'web-scrobbler.zip';
const packageSrcName = 'web-scrobbler-src.zip';
grunt.initConfig({
/**
* Configs of build tasks.
*/
clean: {
build: buildDir,
package: [packageName, packageSrcName],
chrome: [
`${buildDir}/icons/icon128_firefox.png`,
`${buildDir}/icons/icon48_firefox.png`
],
},
copy: {
project_files: {
expand: true,
src: extensionSources,
dest: buildDir,
},
},
compress: {
main: {
options: {
archive: packageName,
pretty: true
},
expand: true,
cwd: buildDir,
src: '**/*',
}
},
imagemin: {
static: {
options: {
svgoPlugins: [{
removeViewBox: false
}],
},
files: [{
expand: true,
src: [
`${buildDir}/icons/*.svg`,
`${buildDir}/icons/*.png`
]
}]
}
},
preprocess: {
firefox: {
src: `${buildDir}/**/*.js`,
expand: true,
options: {
inline: true,
context: {
FIREFOX: true,
}
}
},
chrome: {
src: `${buildDir}/**/*.js`,
expand: true,
options: {
inline: true,
context: {
CHROME: true,
}
}
}
},
rename: {
firefox: {
files: [{
src: `${buildDir}/icons/icon128_firefox.png`,
dest: `${buildDir}/icons/icon128.png`
}, {
src: `${buildDir}/icons/icon48_firefox.png`,
dest: `${buildDir}/icons/icon48.png`
}]
}
},
replace_json: {
firefox: {
src: `${buildDir}/manifest.json`,
changes: {
'applications.gecko.id': '{799c0914-748b-41df-a25c-22d008f9e83f}',
'applications.gecko.strict_min_version': '48.0'
}
},
},
/**
* Linter configs.
*/
eslint: {
target: jsFiles,
options: {
configFile: '.eslintrc.js',
fix: !isTravisCi
},
},
jsonlint: {
src: jsonFiles
},
lintspaces: {
src: [jsFiles, jsonFiles, cssFiles, htmlFiles],
options: {
editorconfig: '.editorconfig',
ignores: ['js-comments']
}
},
stylelint: {
all: cssFiles
},
/**
* Configs of other tasks.
*/
bump: {
options: {
files: ['manifest.json'],
commit: true,
commitFiles: ['manifest.json'],
push: false
}
},
exec: {
make_add0n_changelog: {
cmd: 'node scripts/make-add0n-changelog'
},
publish_cws: {
cmd: `node scripts/publish-cws ${packageName}`
},
run_tests: {
cmd: (...args) => `node tests/runner.js ${args.join(' ')}`
}
},
gitarchive: {
sources: {
options: {
format: 'zip',
treeIsh: 'head',
output: packageSrcName,
}
}
},
gitcommit: {
add0n_changelog: {
options: {
message: 'Update changelog on add0n.com'
},
files: {
src: ['.add0n/changelog.json']
}
}
}
});
require('load-grunt-tasks')(grunt);
/**
* Some tasks take browser name as an argument.
* We support only Chrome and Firefox, which can be specified
* as 'chrome' and 'firefox' respectively:
*
* Build a package for Chrome browser
* > grunt build:chrome
*
* Compile sources for Firefox browser
* > grunt compile:firefox
*/
/**
* Set the extension icon according to specified browser.
* @param {String} browser Browser name
*/
grunt.registerTask('icons', (browser) => {
assertBrowserIsSupported(browser);
switch (browser) {
case 'chrome':
grunt.task.run('clean:chrome');
break;
case 'firefox':
grunt.task.run('rename:firefox');
break;
}
});
/**
* Copy source filed to build directory, preprocess them and
* set the extension icon according to specified browser.
* @param {String} browser Browser name
*/
grunt.registerTask('compile', (browser) => {
assertBrowserIsSupported(browser);
grunt.task.run([
'copy', `preprocess:${browser}`,
`icons:${browser}`, 'imagemin'
]);
if (browser === 'firefox') {
grunt.task.run('replace_json:firefox');
}
});
/**
* Compile source files and package them.
*/
grunt.registerTask('build', (browser) => {
assertBrowserIsSupported(browser);
grunt.task.run([
'clean:build', `compile:${browser}`, 'clean:package',
'compress', 'gitarchive:sources', 'clean:build',
]);
});
/**
* Create package and publish it.
*/
grunt.registerTask('publish', (browser) => {
assertBrowserIsSupported(browser);
switch (browser) {
case 'chrome':
grunt.task.run(['build:chrome', 'exec:publish_cws']);
break;
}
});
/**
* Release new version and publish all packages.
* @param {String} versionType Version type that 'grunt-bump' supports
*/
grunt.registerTask('release', (versionType) => {
if (!versionType) {
grunt.fail.fatal('You should specify release type!');
}
grunt.task.run([
`bump:${versionType}`, 'publish:chrome'
]);
});
/**
* Generate and commit changelog file for add0n.com website.
*/
grunt.registerTask('publish-add0n', [
'exec:make_add0n_changelog', 'gitcommit:add0n_changelog'
]);
/**
* Run core or connectors tests.
*
* You can easily run all test by the following command:
* > grunt test
*
* To run core tests use 'core' as an argument:
* > grunt test:core
*
* Note: running core and connectors tests at the same time is not supported.
*
* You can specify tests you want to run as arguments:
* > grunt test:8tracks
* Run single test for 8tracks connector
*
* > grunt test:hypem:dashradio
* Run tests for Hype Machine and Dash Radio connectors
*
* Also, you can use following options:
* - debug: enable debug mode. Disabled by default.
* Use true|on|1 value to enable and false|off|0 to disable debug mode.
* - quitOnEnd: close browser when all tests are completed. Enabled by default.
* Use true|on|1 value to enable and false|off|0 to disable this feature.
* - skip: skip given tests.
* Tests can be specified as string of tests filenames joined by comma.
*
* Of course, you can mix both options and tests in arguments:
* > grunt test:8tracks:debug=1
*/
grunt.registerTask('test', 'Run tests.', function(...args) {
grunt.task.run([
`exec:run_tests:${args.join(':')}`
]);
});
/**
* Lint source code using linters specified below.
*/
grunt.registerTask('lint', [
'eslint', 'jsonlint', 'lintspaces', 'stylelint'
]);
grunt.registerTask('default', ['lint', 'test:core']);
/**
* Throw an error if the extension doesn't support given browser.
* @param {String} browser Browser name
*/
function assertBrowserIsSupported(browser) {
const supportedBrowsers = ['chrome', 'firefox'];
if (!browser) {
grunt.fail.fatal(
'You have not specified browser.\n' +
`Currently supported browsers: ${supportedBrowsers.join(', ')}.`
);
}
if (supportedBrowsers.indexOf(browser) === -1) {
grunt.fail.fatal(`Unknown browser: ${browser}`);
}
}
};