forked from WebGLayer/webglayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
executable file
·81 lines (73 loc) · 1.69 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
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
concat : {
dist1 : {
src : [
'src/WGL.js',
'src/**/*.js'
],
dest : 'build/main.js'
},
dist2 : {
src : [
'examples/libs/jquery.csv.min.js',
'build/uglf.js'
],
dest : 'build/<%= pkg.name %>.min.js'
}
},
babel: {
options: {
sourceMap: true,
presets: [
['@babel/preset-env', {modules: false}],
]
},
dist: {
files: {
'build/main_es5.js': 'build/main.js'
}
}
},
uglify: {
options: {
banner: '/*! <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> */\n',
mangle:true
},
build: {
src: [
'build/main_es5.js'
],
dest: 'build/uglf.js'
}
},
jsdoc : {
dist : {
src: ['src/*'],
options: {
destination: 'doc'
}
}
},
umd : {
all : {
options : {
src : 'build/main.js',
objectToExport : 'WGL',
deps : {
'default' : ['d3', {jquery : '$'}, 'tooltipster'],
'global' : ['d3', {jQuery : '$'}, 'tooltipster']
}
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-babel');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-jsdoc');
grunt.loadNpmTasks('grunt-umd');
grunt.registerTask('default', ['concat:dist1','babel', 'umd', 'uglify', 'concat:dist2']);
};