This repository has been archived by the owner on Oct 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Gruntfile.js
141 lines (126 loc) · 3.7 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
module.exports = function(grunt) {
require('load-grunt-tasks')(grunt);
var static_dir = 'root/static/';
var templates_dir = 'src/templates/';
var js_dir = 'src/js/';
// Libraries that we need.
var moment = 'bower_components/moment/min/moment.min.js';
var build_tasks = [
'exec:bower',
'exec:deleteBuildFiles',
'handlebars:compile',
'concat:js',
'concat:libs_build'
];
var js_files = [
'helpers.js',
'issues.js'
];
for (var file in js_files) {
js_files[file] = js_dir + js_files[file];
}
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
static_dir: static_dir,
templates_dir: templates_dir,
availabletasks: {
tasks: {
options: {
filter: 'exclude',
tasks: [
'sass', 'diff'
],
groups: {
'Commit:': ['exec:commit_static'],
'Revert:': ['exec:revert']
}
}
}
},
/*
* concat js files in issues_dir and copy to static_dir
*/
concat: {
js: {
src: [
templates_dir + 'handlebars_tmp',
js_files
],
dest: 'issues.js'
},
libs_build: {
src: [
'issues.js', moment
],
dest: 'issues.js'
}
},
/*
* Compiles handlebar templates and add to Handlebars.templates namespace
*/
handlebars: {
compile: {
options: {
namespace: "Handlebars.templates",
processName: function(filepath) {
var parts = filepath.split('/');
return parts[parts.length - 1].replace('.handlebars', '');
}
},
files: {
'<%= templates_dir %>/handlebars_tmp': '<%= templates_dir %>/*.handlebars'
}
}
},
/*
* Removes dev versions of JS and CSS files
*/
remove: {
dev: {
trace: true,
fileList: [
templates_dir + 'handlebars_tmp',
static_dir + 'js/issues.js'
]
}
},
gitrm: {
old_releases: {
options: {
force: 'true'
},
files: {
src: [static_dir + 'js/issues.js']
}
}
},
/*
* Removes console.log
*/
removelogging: {
dist: {
src: static_dir + 'js/issues.js'
}
},
exec: {
revert: "./script/revert_pkg_version.pl",
revert_release: "./script/revert_pkg_version.pl release",
deleteBuildFiles: "mkdir -p build && rm -r build",
bower: "bower install",
commit_static: "git add root/static/* package.json && git commit -m 'Release DDH version: <%= pkg.version %>'"
},
/*
* Bumps the version number in package.json
*/
bump: {
options: {
files: ['package.json'],
commit: false,
createTag: false,
push: false
}
}
});
grunt.registerTask('build', 'Compiles templates, builds JS and CSS files.', build_tasks);
grunt.registerTask('default', build_tasks);
}