-
Notifications
You must be signed in to change notification settings - Fork 91
/
Gruntfile.js
51 lines (49 loc) · 1.75 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
module.exports = function (grunt) {
// Load the plugin that provides the "uglify" task.
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-copy');
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
src: {
js: ['sections/head/code.js',
'sections/basics/code.js',
'sections/format/code.js',
'sections/sort/code.js',
'sections/filter/code.js',
'sections/selection/code.js',
'sections/edit/code.js',
'sections/style/code.js',
'sections/cellTemplate/code.js',
'sections/pagination/code.js',
'sections/config/code.js'],
html: ['sections/head/markup.html',
'sections/introduction/markup.html',
'sections/basics/markup.html',
'sections/format/markup.html',
'sections/sort/markup.html',
'sections/filter/markup.html',
'sections/selection/markup.html',
'sections/edit/markup.html',
'sections/style/markup.html',
'sections/cellTemplate/markup.html',
'sections/pagination/markup.html',
'sections/config/markup.html',
'sections/foot/markup.html']
},
concat: {
options: {
},
js: {
src: ['<%= src.js %>'],
dest: 'assets/js/app.js'
},
html: {
src: ['<%= src.html %>'],
dest: 'index.html'
}
}
});
// Default task(s).
grunt.registerTask('default', ['concat']);
};