-
Notifications
You must be signed in to change notification settings - Fork 12
/
Gruntfile.js
59 lines (55 loc) · 1008 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
56
57
58
59
'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"]
}]
}
},
ts: {
build: {
src:["{,pencils/}*.ts"],
reference: "dist/MapPaint.d.ts",
out:'./dist/MapPaint.js',
// outDir:'build',
options:{
target: 'es5',
module: 'commonjs',
sourceMap:true
}
},
watch: {
src:["{,pencils/}*.ts"],
reference: "dist/MapPaint.d.ts",
out:'./dist/MapPaint.js',
watch: '.',
options:{
target: 'es5',
module: 'commonjs',
sourceMap:true
}
}
},
uglify: {
ts: {
options: {
sourceMap: true,
sourceMapName: 'dist/MapPaint.min.js.map'
},
files: {
'dist/MapPaint.min.js' : ['dist/MapPaint.js']
}
}
}
});
grunt.registerTask('build', [
'clean:ts',
'ts:build',
'uglify'
]);
grunt.registerTask('default', ['build']);
}