-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
executable file
·87 lines (74 loc) · 2.51 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
module.exports = function(grunt) {
grunt.initConfig({
// read the package definition of the project
pkg: grunt.file.readJSON('package.json'),
concat: {
base : {
src: [
'src/js/app/depgraphlib.js',
'src/js/app/utils/**/*.js',
'src/js/app/ui/**/*.js',
'src/js/app/graph/**/*.js',
'src/js/app/edition/**/*.js',
//'src/js/vendor/typeahead.bundle.js'
],
dest: 'build/<%= pkg.name %>.js'
},
mgwiki : {
src: ['build/<%= pkg.name %>.js','src/js/plugins/*.js'],
dest: 'build/mgwiki.<%= pkg.name %>.js'
}
},
uglify: {
options: {
banner: '/*! <%= pkg.name %> <%= grunt.template.today("dd-mm-yyyy") %> */\n'
},
base: {
files: {
'build/<%= pkg.name %>.min.js': ['<%= concat.base.dest %>']
}
},
mgwiki:{
files:{
'build/mgwiki.<%= pkg.name %>.min.js': ['<%= concat.mgwiki.dest %>']
}
}
},
copy: {
css: {
files: [
{expand: true, cwd: 'src/', src: ['style/**'], dest: 'build/'},
]
},
},
clean: {
all : ['build/*'],
css : ['build/style/*'],
},
jsdoc : {
dist : {
src: ['src/js/app/**/*.js', 'src/js/plugins/**/*.js'],
options: {
destination: 'doc'
}
}
},
});
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-jsdoc');
grunt.registerTask('style',['clean:css','copy:css']);
grunt.registerTask('mgwiki_prod',['concat:base','concat:mgwiki','uglify:mgwiki']);
grunt.registerTask('mgwiki_dev',['concat:base','concat:mgwiki']);
grunt.registerTask('base_prod',['concat:base','uglify:base']);
grunt.registerTask('base_dev',['concat:base']);
grunt.registerTask('build_all',[
'concat:base','concat:mgwiki','uglify:mgwiki',
'concat:base','concat:mgwiki',
'concat:base','uglify:base',
'concat:base'
]);
grunt.registerTask('dev',['clean:css','copy:css','concat:base','concat:mgwiki']);
};