forked from StartBootstrap/startbootstrap-agency
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
77 lines (73 loc) · 3.04 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
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
concat: {
jquery: {
files: {
'dist/js/jquery.min.js': ['bower_components/jquery/dist/jquery.min.js'],
'dist/js/jquery.js': ['bower_components/jquery/dist/jquery.js'],
'dist/js/agency.js': ['js/agency.js'],
'dist/js/cbpAnimatedHeader.js': ['js/cbpAnimatedHeader.js'],
'dist/js/classie.js': ['js/classie.js'],
'dist/js/contact_me.js': ['js/contact_me.js'],
'dist/js/jqBootstrapValidation.js': ['js/jqBootstrapValidation.js']
}
},
bootstrap: {
files: {
'dist/js/bootstrap.min.js': ['bower_components/bootstrap/dist/js/bootstrap.min.js'],
'dist/js/bootstrap.js': ['bower_components/bootstrap/dist/js/bootstrap.js'],
'dist/css/bootstrap.min.css': ['bower_components/bootstrap/dist/css/bootstrap.min.css'],
'dist/css/bootstrap.css': ['bower_components/bootstrap/dist/css/bootstrap.css'],
'dist/fonts/glyphicons-halflings-regular.eot': ['bower_components/bootstrap/fonts/glyphicons-halflings-regular.eot'],
'dist/fonts/glyphicons-halflings-regular.svg': ['bower_components/bootstrap/fonts/glyphicons-halflings-regular.svg'],
'dist/fonts/glyphicons-halflings-regular.ttf': ['bower_components/bootstrap/fonts/glyphicons-halflings-regular.ttf'],
'dist/fonts/glyphicons-halflings-regular.woff': ['bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff'],
}
},
},
copy: {
main: {
src: ['*.html', 'mail/**'],
dest: 'dist/',
},
},
less: {
development: {
options: {
paths: ["css"]
},
files: {
"dist/css/agency.css": "less/agency.less"
}
},
production: {
options: {
paths: ["css"],
cleancss: true
},
files: {
"dist/css/agency.css": "less/agency.less"
}
}
},
imagemin: {
dynamic: {
files: [{
expand: true,
cwd: 'img/',
src: ['**/*.{png,jpg,gif}'],
dest: 'dist/img/'
}]
}
}
});
// Load the plugin that provides the "copy" task.
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-contrib-imagemin');
// Default task(s).
grunt.registerTask('default', ['concat', 'copy', 'less', 'imagemin']);
};