forked from OpenTreeMap/otm-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
231 lines (217 loc) · 8.6 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
"use strict";
var path = require('path');
module.exports = function(grunt) {
var debug = typeof grunt.option('dev') !== "undefined";
var appBundlePath = 'treemap/static/js/treemap.js';
var testBundlePath = 'treemap/static/js/treemap.test.js';
grunt.loadNpmTasks('grunt-browserify');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-sass');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-file-creator');
grunt.file.setBase('opentreemap');
grunt.registerTask('check', ['jshint']);
grunt.registerTask('js', debug ? ['browserify', 'file-creator'] : ['browserify', 'uglify']);
grunt.registerTask('css', debug ? ['sass', 'concat'] : ['sass', 'concat', 'cssmin']);
grunt.registerTask('default', ['js', 'css']);
/*
* Maps all src/*.js files by their Django app name.
* Makes it easy to use treemap JS modules from other Django apps
*/
function getSrcAliases() { return getAliases('src'); }
function getTestAliases() { return getAliases('test'); }
function getLibAliases() { return getAliases('lib'); }
function getRegularAliases() {
return getAliases('src').concat(getAliases('lib'));
}
function getAliases(type) {
if (type !== 'src' && type !== 'test' && type !== 'lib') {
throw new Error('type argument must be src, test, or lib');
}
var files = grunt.file.expand('*/js/' + type + '/*.js');
return files.map(function(filename) {
var basename = path.basename(filename, '.js'),
app = filename.split(path.sep)[0],
prefix = type === 'src' ? '' : (type + '/');
return filename + ':' + app + '/' + prefix + basename;
});
}
function getSrcAliasNames() {
return getAliasNames(getSrcAliases());
}
function getLibAliasNames() {
return getAliasNames(getLibAliases());
}
function getRegularAliasNames() {
return getSrcAliasNames().concat(getLibAliasNames());
}
function getTestAliasNames() {
return getAliasNames(getTestAliases());
}
function getAliasNames(aliases) {
return aliases.map(function(alias){
return alias.split(':')[1];
});
}
grunt.initConfig({
'file-creator': {
test: {
'treemap/static/js/testModules.js': function(fs, fd, done) {
fs.writeSync(fd, 'TEST_MODULES = ["' + getTestAliasNames().join('","') + '"];');
done();
}
}
},
browserify: {
test: {
src: ['./treemap/js/test/**/*.js'],
dest: testBundlePath,
options: {
alias: getTestAliases(),
external: getRegularAliasNames(),
aliasMappings: { // Make libs available to test functions
cwd:'treemap/js/lib/',
src: ['*.js'],
dest: '',
ext: '',
flatten: true
}
// setting debug: true causes tests to not be found
}
},
treemap: {
src: [],
dest: appBundlePath,
options: {
alias: getRegularAliases(),
aliasMappings: {
cwd:'treemap/js/lib/',
src: ['*.js'],
dest: '',
ext: '',
flatten: true
},
noParse: grunt.file.expand('*/js/lib/*.js'),
shim: {
leafletgoogle: {
path: './treemap/js/shim/leaflet.google.js',
exports: null,
depends: { leaflet: 'L' }
},
leafletbing: {
path: './treemap/js/shim/leaflet.bing.js',
exports: null,
depends: { leaflet: 'L' }
},
utfgrid: {
path: './treemap/js/shim/leaflet.utfgrid.js',
exports: null,
depends: { leaflet: 'L' }
},
leafletEditablePolyline: {
path: './treemap/js/shim/leaflet-editable-polyline.js',
exports: null,
depends: { leaflet: 'L' }
},
bloodhound: {
path: './treemap/js/shim/bloodhound.js',
exports: 'Bloodhound',
depends: { jquery: 'jQuery' }
},
// BEGIN modules which add themselves to the jQuery object
typeahead: {
path: './treemap/js/shim/typeahead.jquery.js',
exports: null,
depends: { jquery: 'jQuery' }
},
bootstrap: {
path: './treemap/js/shim/bootstrap.js',
exports: null,
depends: { jquery: 'jQuery' }
},
jqueryFileUpload: {
path: './treemap/js/shim/jquery.fileupload.js',
exports: null,
depends: { jquery: 'jQuery' }
},
jqueryIframeTransport: {
path: './treemap/js/shim/jquery.iframe-transport.js',
exports: null,
depends: { jquery: 'jQuery' }
},
jqueryUiWidget: {
path: './treemap/js/shim/jquery.ui.widget.js',
exports: null,
depends: { jquery: 'jQuery' }
},
"bootstrap-datepicker": {
path: './treemap/js/shim/bootstrap-datepicker.js',
exports: null,
depends: { jquery: 'jQuery', bootstrap: 'bootstrap' }
},
// END modules which add themselves to the jQuery object
jscolor: {
path: './treemap/js/shim/jscolor.js',
exports: null
},
history: {
path: './treemap/js/shim/native.history.js',
exports: 'History'
}
},
debug: debug
}
}
},
jshint: {
options: {
jshintrc: "../.jshintrc"
},
treemap: ['../Gruntfile.js', '*/js/src/**/*.js']
},
uglify: {
options: {
mangle: {
except: ['require', 'google']
}
},
treemap: {
files: {
'treemap/static/js/treemap.min.js': [appBundlePath]
}
}
},
sass: {
treemap: {
options: {
includePaths: ['treemap/css/sass/']
},
files: {
'treemap/static/css/main.css': 'treemap/css/sass/main.scss'
}
}
},
concat: {
treemap: {
src: ['treemap/css/vendor/bootstrap.css',
'treemap/css/vendor/bootstrap-responsive.css',
'treemap/css/vendor/bootstrap-lightbox.css',
'treemap/css/vendor/datepicker.css',
'treemap/css/vendor/fontello.css',
'treemap/css/vendor/toastr.css',
'treemap/css/vendor/leaflet.css'],
dest: 'treemap/static/css/vendor.css'
}
},
cssmin: {
treemap: {
files: {
'treemap/static/css/vendor.min.css': ['treemap/static/css/vendor.css'],
'treemap/static/css/main.min.css': ['treemap/static/css/main.css']
}
}
}
});
};