forked from jwplayer/jwplayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
275 lines (246 loc) · 7.39 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
'use strict';
/* eslint-env node */
/* eslint no-process-env: 0 */
const fs = require('fs');
const webpack = require('webpack');
const webpackConfigs = require('./webpack.config');
const webpackCompilers = {};
const execSync = require('child_process').execSync;
function runCommand(command, dir) {
execSync(command, {
cwd: dir,
stdio: [0, 1, 2]
});
}
module.exports = function(grunt) {
require('load-grunt-tasks')(grunt);
const packageInfo = grunt.file.readJSON('package.json');
console.log('%s v%s', packageInfo.name, packageInfo.version);
grunt.initConfig({
starttime: new Date(),
pkg: packageInfo,
less: {
options: {
compress: false,
paths: ['src/css', 'src/css/*'],
strictMath: true
},
internal: {
options: {
dumpLineNumbers: 'comments'
},
files: {
'bin-debug/css/jwplayer.css': 'src/css/jwplayer.less',
'bin-debug/css/controls.css': 'src/css/controls.less'
}
}
},
postcss: {
options: {
processors: [
require('autoprefixer')
],
failOnError: true,
writeDest: true
},
internal: {
src: [
'bin-debug/css/*.css',
]
},
debug: {
src: [
'bin-debug/css/*.css',
]
}
},
watch : {
options: {
interrupt: false,
spawn: false,
debounceDelay: 3000,
livereload: true,
event: ['added', 'changed'],
dateFormat: function(time) {
grunt.log.writeln('Updated in ' + (time / 1000).toFixed(3) + 's at ' + (new Date()).toISOString());
}
},
player: {
options: {
atBegin: true
},
files: ['src/js/**/*.js'],
tasks: [
'webpack:debug',
'lint:js',
'karma:local'
]
},
css: {
files: ['src/css/{,*/}*.less'],
tasks: ['stylelint', 'webpack:debug', 'postcss:debug']
},
tests: {
files: ['test/{,*/}*.js'],
tasks: ['lint:tests', 'karma:local']
}
},
connect: {
options: {
port: 3000,
// change this to '0.0.0.0' to access the server from outside
// change this to 'localhost' to restrict access to the server from outside
hostname: 'localhost'
},
livereload: {
options: {
open: true,
livereload: true,
base: [
'.'
]
}
}
},
karma: {
options: {
configFile: './karma.conf.js',
junitReporter: {
suite: '<%= grunt.task.current.target %>',
outputDir: 'reports/junit'
}
},
headless: {
browsers: ['ChromeHeadless']
},
chrome: {
browsers: ['Chrome']
},
firefox: {
browsers: ['Firefox']
},
safari: {
browsers: ['Safari']
},
browserstack: {
browsers: ['chrome', 'firefox', 'edge', 'ie11']
},
browserstack_chrome: {
browsers: ['chrome']
},
browserstack_firefox: {
browsers: ['firefox']
},
browserstack_edge: {
browsers: ['edge']
},
browserstack_ie11: {
browsers: ['ie11']
},
browserstack_iphone: {
browsers: ['iphone']
},
browserstack_android: {
browsers: ['android']
}
},
clean: {
options: {
force: true
},
dist: {
src: [
'bin-debug/',
'bin-release/'
]
},
docs: {
src: [
'docs/api/'
]
}
}
});
grunt.registerTask('webpack', 'Run webpack compiler', function() {
const done = this.async();
const targets = {};
this.args.forEach(t => {
targets[t] = true;
});
const configs = webpackConfigs(targets);
// Store compiler for faster "watch" and "server" task running
// this works as long as the watch task doesn't spawn a new process
const id = this.args.join('_') || 'all';
const compiler = webpackCompilers[id] || webpack(configs);
webpackCompilers[id] = compiler;
compiler.run(function(err, stats) {
if (err) {
throw err;
}
const jsonStats = stats.toJson();
if (jsonStats.errors.length) {
throw jsonStats.errors;
}
if (jsonStats.warnings.length) {
console.warn(jsonStats.warnings);
}
done();
});
});
grunt.registerTask('hooks', 'Install Pre Push Hook', function() {
runCommand('yarn hooks', '.');
});
grunt.registerTask('notice', 'Create notice.txt file', function() {
const notice = require('./jwplayer.license.notice.js');
const output = './bin-release/notice.txt';
const done = this.async();
fs.writeFile(output, notice, function(err4) {
if (err4) { throw err4; }
console.log('Wrote file', output);
done();
});
});
grunt.registerTask('lint', 'ESLints JavaScript & Stylelints LESS', function(target) {
let command = 'yarn lint';
if (target === 'js') {
command = command + ':js';
}
if (target === 'test') {
command = command + ':tests';
}
runCommand(command, '.');
});
grunt.registerTask('type-check', 'Run type-check on ts files', function() {
runCommand('yarn type-check', '.')
});
// grunt.registerTask('docs', 'Generate API documentation', function() {
// runCommand('yarn docs', '.');
// "preversion": "grunt && grunt clean:docs && npm run docs && git add docs",
// "docs": "jsdoc -c docs/jsdoc.conf.json",
// });
grunt.registerTask('karma:local', [
'karma:headless'
]);
grunt.registerTask('karma:remote', 'karma:browserstack');
grunt.registerTask('test', [
'karma'
]);
grunt.registerTask('build-js', [
'webpack',
'lint',
'less',
'postcss'
]);
grunt.registerTask('build', [
'clean:dist',
'build-js',
'type-check',
'notice',
'karma:local'
]);
grunt.registerTask('serve', [
'connect:livereload',
'watch'
]);
grunt.registerTask('default', 'build');
};