forked from agendav/agendav
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
63 lines (55 loc) · 1.87 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
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
less: {
development: {
options: {
compress: false
},
files: {
"./web/public/css/agendav.css": "./web/assets/stylesheets/agendav.less"
}
}
},
copy: {
development: {
files: [
{ expand: true, cwd: 'bower_components/font-awesome/fonts', src: ['**'], dest: 'web/public/font/' },
{ expand: true, cwd: 'bower_components/bootstrap/js', src: ['button.js', 'tab.js'], dest: 'web/public/js/libs/' },
{ expand: true, cwd: 'bower_components/bootstrap/fonts', src: ['**'], dest: 'web/public/font/' },
{ expand: true, cwd: 'bower_components/dustjs-linkedin/dist', src: ['dust-core.js'], dest: 'web/public/js/templates/' },
{ expand: true, cwd: 'bower_components/dustjs-helpers/dist', src: ['dust-helpers.js'], dest: 'web/public/js/templates/' },
],
}
},
dust: {
defaults: {
files: {
"web/public/js/templates/templates.js": "web/assets/templates/*.dust"
},
options: {
wrapper: false,
runtime: false,
basePath: "web/assets/templates/"
}
}
},
watch: {
less: {
files: ['./web/assets/stylesheets/*.less'],
tasks: ['less:development']
},
dust: {
files: ['./web/assets/templates/*.dust'],
tasks: ['dust']
}
}
});
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-dust');
grunt.registerTask('default', [ 'dist' ]);
};