forked from SAP/ui5-inspector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aliases.js
50 lines (42 loc) · 843 Bytes
/
aliases.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
'use strict';
/**
* Grunt aliases
* @type {Object}
*/
module.exports = {
// Make sure code styles are up to par and there are no obvious mistakes.
lint: [
'jshint',
'jscs'
],
// Preprocess .js and .less files.
preprocess: [
'browserify',
'less'
],
// Builds the project without running any test.
dist: [
'clean',
'preprocess',
'copy',
'replace',
'usebanner',
'compress'
],
// Runs all tests for continues integration.
test: [
'lint',
'less',
'karma:CI'
],
// Runs all tests and upload lcov.info to coveralls
travis: [
'test',
'coveralls'
],
// Builds the project and monitor changes in files
default: [
'dist',
'watch'
]
};