forked from superdesk/superdesk-client-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
107 lines (92 loc) · 2.53 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
'use strict';
var path = require('path');
module.exports = function(grunt) {
// util for grunt.template
grunt.toJSON = function(input) {
return JSON.stringify(input);
};
var config = {
pkg: grunt.file.readJSON(path.join(__dirname, 'package.json')),
appDir: 'app',
tmpDir: '.tmp',
distDir: 'dist',
specDir: 'spec',
tasksDir: 'tasks',
bowerDir: 'bower',
comDir: 'bower_components',
coreDir: __dirname,
poDir: 'po',
livereloadPort: 35729
};
grunt.initConfig(config);
require('load-grunt-tasks')(grunt, {config: path.join(__dirname, 'package')});
require('load-grunt-config')(grunt, {
config: config,
configPath: path.join(__dirname, 'tasks', 'options')
});
grunt.registerTask('style', ['less:dev', 'cssmin']);
grunt.registerTask('test', ['karma:unit']);
grunt.registerTask('hint', ['jshint', 'jscs', 'eslint:specs', 'eslint:tasks', 'eslint:root']);
grunt.registerTask('hint:docs', ['jshint:docs', 'jscs:docs']);
grunt.registerTask('ci', ['test', 'hint']);
grunt.registerTask('ci:travis', ['karma:travis', 'hint']);
grunt.registerTask('bamboo', ['karma:bamboo']);
grunt.registerTask('lint', ['hint']);
grunt.registerTask('docs', [
'clean',
'less:docs',
'cssmin',
'template:docs',
'connect:test',
'open:docs',
'ngtemplates',
'watch'
]);
grunt.registerTask('server', [
'clean',
'style',
'template:test',
'connect:test',
'watch'
]);
grunt.registerTask('server:e2e', [
'clean',
'style',
'template:mock',
'connect:mock',
'ngtemplates',
'watch'
]);
grunt.registerTask('server:travis', [
'clean',
'style',
'ngtemplates',
'template:travis',
'connect:travis'
]);
grunt.registerTask('bower', [
'build',
'copy:bower',
'concat:bowerCore',
'uglify:bower',
'clean:bower'
]);
grunt.registerTask('build', [
'clean',
'less:dev',
'ngtemplates',
'useminPrepare',
'concat:generated',
'uglify:generated',
'cssmin:generated',
'copy:assets',
'copy:js',
'copy:docs',
'template:test',
'template:docs',
'filerev',
'usemin'
]);
grunt.registerTask('package', ['ci', 'build']);
grunt.registerTask('default', ['server']);
};