-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
80 lines (80 loc) · 1.99 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
module.exports = function(grunt) {
var config = {
bower_path: 'bower_components',
build_path: '.build',
css: 'css',
js: 'js',
images: 'img',
fonts: 'fonts',
};
grunt.registerTask('default', [ 'concat', 'copy', 'uglify', 'less', 'cssmin', 'clean' ]);
grunt.initConfig({
config: config,
pkg: grunt.file.readJSON('package.json'),
concat: {
options: {
separator: ';'
},
bootstrap: {
src: [
'<%= config.bower_path %>/bootstrap/js/*.js'
],
dest: '<%= config.build_path %>/bootstrap.js'
},
},
uglify: {
options: {
compress: true,
mangle: false,
warnings: false,
preserveComments: 'some',
banner: '/*! <%= pkg.name %> <%= grunt.template.today("mm-dd-yyyy") %> */\n'
},
build: {
files: [{
expand: true,
src: '**/*.js',
dest: '<%= config.js %>',
cwd: '<%= config.build_path %>',
ext: '.min.js'
}]
}
},
less: {
bootstrap: {
files: {
"<%= config.build_path %>/bootstrap.css": "<%= config.bower_path %>/bootstrap/less/bootstrap.less"
}
},
},
copy: {
bower: {
files: [{
src: '<%= config.bower_path %>/jquery/dist/jquery.min.js',
dest: '<%= config.js %>/jquery.min.js'
}]
}
},
cssmin: {
minify: {
expand: true,
cwd: '<%= config.build_path %>/',
src: ['*.css', '!*.min.css'],
dest: '<%= config.css %>/',
ext: '.min.css'
}
},
clean: {
build: {
src: [ '<%= config.build_path %>' ]
},
},
});
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-watch');
};