-
Notifications
You must be signed in to change notification settings - Fork 133
/
Gruntfile.js
105 lines (99 loc) · 3.29 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
'use strict';
module.exports = function (grunt) {
require('load-grunt-tasks')(grunt);
require('time-grunt')(grunt);
grunt.initConfig({
clean: {
dist: {
files: [{
src: ["dist/*.js", "dist/*.d.ts", "dist/*.css"]
}],
},
dev: {
files: [{
src: ["build/*.js", "build/*.d.ts", "build/*.map", "build/*.css"]
}],
}
},
ts: {
options: {
target: 'es5',
module: 'amd',
declaration: true,
},
dist: {
src: ["PruneCluster.ts", "LeafletAdapter.ts", "LeafletSpiderfier.ts"],
out: './dist/PruneCluster.js',
options: {
sourceMap: false
}
},
dev: {
src: ["PruneCluster.ts", "LeafletAdapter.ts", "LeafletSpiderfier.ts"],
out: './build/PruneCluster.js',
options: {
sourceMap: true
}
}
},
uglify: {
ts: {
options: {
sourceMap: false
},
files: {
'dist/PruneCluster.min.js': ['dist/PruneCluster.js']
}
}
},
copy: {
dist: {
src: 'LeafletStyleSheet.css',
dest: 'dist/LeafletStyleSheet.css'
},
dev: {
src: 'LeafletStyleSheet.css',
dest: 'build/LeafletStyleSheet.css'
}
},
exec: {
'meteor-init': {
command: [
//Make sure Meteor is installed, per https://meteor.com/install.
// he curl'ed script is safe; takes 2 minutes to read source & check.
'type meteor >/dev/null 2>&1 || { curl https://install.meteor.com/ | sh; }',
//Meteor expects package.js to be in the root directory
//of the checkout, so copy it there temporarily
'cp meteor/package.js .'
].join(';')
},
'meteor-cleanup': {
//remove build files and package.js
command: 'rm -rf .build.* versions.json package.js'
},
'meteor-test': {
command: 'node_modules/.bin/spacejam --mongo-url mongodb:// test-packages ./'
},
'meteor-publish': {
command: 'meteor publish'
}
}
});
grunt.registerTask('build:dist', [
'clean:dist',
'copy:dist',
'ts:dist',
'uglify'
]);
grunt.registerTask('build:dev', [
'clean:dev',
'copy:dev',
'ts:dev'
])
grunt.registerTask('build', ['build:dev']);
grunt.registerTask('default', ['build:dev']);
// Meteor tasks
grunt.registerTask('meteor-test', ['exec:meteor-init', 'exec:meteor-test', 'exec:meteor-cleanup']);
grunt.registerTask('meteor-publish', ['exec:meteor-init', 'exec:meteor-publish', 'exec:meteor-cleanup']);
grunt.registerTask('meteor', ['exec:meteor-init', 'exec:meteor-test', 'exec:meteor-publish', 'exec:meteor-cleanup']);
};