forked from SINTEF-9012/PruneCluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
55 lines (51 loc) · 989 Bytes
/
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
'use strict';
module.exports = function(grunt) {
require('load-grunt-tasks')(grunt);
require('time-grunt')(grunt);
grunt.initConfig({
clean: {
ts: {
files: [{
src:["dist/*.js", "dist/*.d.ts", "dist/*.map", "dist/*.css"]
}]
}
},
ts: {
build: {
src:["PruneCluster.ts", "LeafletAdapter.ts", "LeafletSpiderfier.ts"],
reference: "dist/PruneCluster.d.ts",
out:'./dist/PruneCluster.js',
// outDir:'build',
options:{
target: 'es5',
module: 'commonjs',
sourceMap:true
}
}
},
uglify: {
ts: {
options: {
sourceMap: true,
sourceMapName: 'dist/PruneCluster.min.js.map'
},
files: {
'dist/PruneCluster.min.js' : ['dist/PruneCluster.js']
}
}
},
copy: {
css: {
src: 'LeafletStyleSheet.css',
dest: 'dist/LeafletStyleSheet.css'
}
}
});
grunt.registerTask('build', [
'clean:ts',
'copy:css',
'ts:build',
'uglify'
]);
grunt.registerTask('default', ['build']);
}