-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gruntfile.js
66 lines (62 loc) · 1.38 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
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
bower: {
install: {
options: {
copy: false
}
}
},
copy: {
bootstrap: {
expand: true,
cwd: 'bower_components/bootstrap/dist/',
src: ['js/**', 'css/**', 'fonts/**'],
dest: 'static/'
},
datatables: {
expand: true,
cwd: 'bower_components/datatables/media/js/',
src: ['jquery.dataTables.js'],
dest: 'static/js/'
},
jquery: {
expand: true,
cwd: 'bower_components/jquery/',
src: ['jquery.js'],
dest: 'static/js/'
},
moment: {
expand: true,
cwd: 'bower_components/momentjs/',
src: ['moment.js'],
dest: 'static/js/'
},
moment_lang: {
expand: true,
cwd: 'bower_components/momentjs/min/',
src: ['langs.js'],
dest: 'static/js/'
},
bootstrap_daterangepicker_js: {
expand: true,
cwd: 'bower_components/bootstrap-daterangepicker/',
src: ['daterangepicker.js'],
dest: 'static/js/'
},
bootstrap_daterangepicker_css: {
expand: true,
cwd: 'bower_components/bootstrap-daterangepicker/',
src: ['daterangepicker-bs3.css'],
dest: 'static/css/'
}
}
});
// Load the plugins
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-bower-task');
// Default task(s).
grunt.registerTask('default', ['bower:install', 'copy']);
};