forked from SINTEF-9012/PruneCluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
83 lines (78 loc) · 2.74 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
'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,
additionalFlags: "--declaration"
}
}
},
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'
}
},
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', [
'clean:ts',
'copy:css',
'ts:build',
'uglify'
]);
grunt.registerTask('default', ['build']);
// 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']);
};