forked from Dynalon/mdwiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
269 lines (250 loc) · 8.73 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
var createIndex = function (grunt, taskname) {
'use strict';
var conf = grunt.config('index')[taskname],
tmpl = grunt.file.read(conf.template);
grunt.config.set('templatesString', '');
// register the task name in global scope so we can access it in the .tmpl file
grunt.config.set('currentTask', {name: taskname});
grunt.file.write(conf.dest, grunt.template.process(tmpl));
grunt.log.writeln('Generated \'' + conf.dest + '\' from \'' + conf.template + '\'');
};
/*global module:false*/
module.exports = function(grunt) {
'use strict';
// Project configuration.
// load all grunt tasks matching the `grunt-*` pattern
require('load-grunt-tasks')(grunt);
grunt.initConfig({
// Metadata.
pkg: {
name: 'MDwiki',
version: '0.7.0'
},
ownJsFiles: [
'js/marked.js',
'js/init.js',
'ts_compiled/mdwiki_ts.js',
'tmp/MDwiki.templates.js',
'js/main.js',
'js/util.js',
'js/basic_skeleton.js',
'js/bootstrap.js',
// gimmicks
'js/gimmicks/templating.js',
'js/gimmicks/prism.js',
/*
'js/gimmicks/googlemaps.js',
'js/gimmicks/alerts.js',
'js/gimmicks/colorbox.js',
// 'js/gimmicks/carousel.js',
'js/gimmicks/disqus.js',
'js/gimmicks/editme.js',
'js/gimmicks/facebooklike.js',
'js/gimmicks/forkmeongithub.js',
'js/gimmicks/gist.js',
'js/gimmicks/iframe.js',
'js/gimmicks/math.js',
// // 'js/gimmicks/leaflet.js',
'js/gimmicks/twitter.js',
'js/gimmicks/youtube_embed.js',
'js/gimmicks/yuml.js'
*/
],
// REMEMBER:
// * ORDER OF FILES IS IMPORTANT
// * ALWAYS ADD EACH FILE TO BOTH minified/unminified SECTIONS!
cssFiles: [
'tmp/main.min.css',
],
jsFiles: [
'bower_components/jquery/jquery.min.js',
'node_modules/handlebars/dist/handlebars.runtime.min.js',
'extlib/js/jquery.colorbox.min.js',
'extlib/js/prism.js',
'bower_components/bootstrap/js/affix.js',
'bower_components/bootstrap/js/dropdown.js',
],
// for debug builds use unminified versions:
unminifiedCssFiles: [
'tmp/main.css'
],
unminifiedJsFiles: [
'bower_components/jquery/jquery.js',
'bower_components/bootstrap/js/affix.js',
'bower_components/bootstrap/js/dropdown.js',
'node_modules/handlebars/dist/handlebars.runtime.js',
'extlib/js/prism.js',
'extlib/js/jquery.colorbox.js',
],
ts: {
// TOD: use tsconfig.json as soon as tsconfig.json supports globs/wildcards
base: {
tsconfig: "js/ts/tsconfig.json"
}
},
less: {
min: {
options: {
compress: true,
},
files: {
'tmp/main.min.css': 'styles/main.less',
},
},
dev: {
options: {
compress: false,
},
files: {
'tmp/main.css': 'styles/main.less',
},
},
},
concat: {
options: {
//banner: '<%= banner %>',
stripBanners: true
},
dev: {
src: '<%= ownJsFiles %>',
dest: 'tmp/<%= pkg.name %>.js'
}
},
uglify: {
options: {
// banner: '<%= banner %>'
},
dist: {
src: '<%= concat.dev.dest %>',
dest: 'tmp/<%= pkg.name %>.min.js'
}
},
index: {
release: {
template: 'index.tmpl',
dest: 'dist/mdwiki.html'
},
debug: {
template: 'index.tmpl',
dest: 'dist/mdwiki-debug.html'
}
},
lib_test: {
src: ['lib/**/*.js', 'test/**/*.js']
},
copy: {
release: {
expand: false,
flatten: true,
src: [ 'dist/mdwiki.html' ],
dest: 'release/mdwiki-<%= grunt.config("pkg").version %>/mdwiki.html'
},
release_debug: {
expand: false,
flatten: true,
src: [ 'dist/mdwiki-debug.html' ],
dest: 'release/mdwiki-<%= grunt.config("pkg").version %>/mdwiki-debug.html'
},
release_templates: {
expand: true,
flatten: true,
src: [ 'release_templates/*' ],
dest: 'release/mdwiki-<%= grunt.config("pkg").version %>/'
},
unittests: {
files: [{
expand: true,
flatten: true,
src: 'tmp/MDwiki.js',
dest: 'unittests/lib/'
},
{
expand: true,
flatten: true,
src: 'bower_components/jquery/jquery.min.js',
dest: 'unittests/lib/'
}]
}
},
shell: {
zip_release: {
options: {
stdout: true
},
command: 'cd release && zip -r mdwiki-<%= grunt.config("pkg").version %>.zip mdwiki-<%= grunt.config("pkg").version %>'
},
/* precompilation of our handlebars templates */
compile_templates: {
options: {
stdout: true
},
// -n mdwiki = Namespace is mdwiki
// -f outputfile
// -r root for the templates (will mirror the FS structure to the template name)
// -m = minify
command: './node_modules/.bin/handlebars -f tmp/MDwiki.templates.js -r templates -m templates/**/*.html'
}
},
watch: {
files: [
'Gruntfile.js',
'js/*.js',
'js/**/*.js',
'js/ts/**/*.ts',
'js/**/*.tsx',
'unittests/**/*.js',
'unittests/**/*.html',
'templates/**/*.html',
'index.tmpl'
],
tasks: ['debug','reload' ]
},
reload: {
port: 35729,
liveReload: {}
},
'http-server': {
'dev': {
root:'./',
port: 8080,
host: "0.0.0.0",
cache: 1,
showDir : true,
autoIndex: true,
defaultExt: "html",
runInBackground: false
}
}
});
/*** CUSTOM CODED TASKS ***/
grunt.registerTask('index', 'Generate mdwiki.html, inline all scripts', function() {
createIndex(grunt, 'release');
});
/* Debug is basically the releaes version but without any minifing */
grunt.registerTask('index_debug', 'Generate mdwiki-debug.html, inline all scripts unminified', function() {
createIndex(grunt, 'debug');
});
/*grunt.registerTask('assembleTemplates', 'Adds a script tag with id to each template', function() {
var templateString = '';
grunt.file.recurse('templates/', function(abspath, rootdir, subdir, filename){
var intro = '<script type="text/html" id="/' + rootdir.replace('/','') + '/' + subdir.replace('/','') + '/' + filename.replace('.html','') + '">\n';
var content = grunt.file.read(abspath);
var outro = '</script>\n';
templateString += intro + content + outro;
});
grunt.file.write('tmp/templates.html', templateString);
});*/
/*** NAMED TASKS ***/
grunt.registerTask('release', [ 'ts', 'less:min', 'shell:compile_templates', 'concat:dev', 'uglify:dist', 'index' ]);
grunt.registerTask('debug', [ 'ts', 'less:dev', 'shell:compile_templates', 'concat:dev', 'index_debug' ]);
grunt.registerTask('devel', [ 'debug', 'server', 'unittests', 'reload', 'watch' ]);
grunt.registerTask('unittests', [ 'copy:unittests' ]);
grunt.registerTask('server', [ 'http-server:dev' ]);
grunt.registerTask('distrelease',[
'release', 'debug',
'copy:release', 'copy:release_debug', 'copy:release_templates',
'shell:zip_release'
]);
// Default task
grunt.registerTask('default', [ 'release', 'debug', 'unittests' ] );
};