This repository has been archived by the owner on Jul 5, 2019. It is now read-only.
forked from utkarsh2102/GoogleUdacity_JeevanRakht
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
91 lines (82 loc) · 2.1 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
81
82
83
84
85
86
87
88
89
90
91
/*
Run this with one of these options:
"grunt" alone creates a new, completed images directory
"grunt clean" removes the images directory
"grunt responsive_images" re-processes images without removing the old ones
*/
module.exports = function(grunt) {
grunt.initConfig({
responsive_images: {
dev: {
options: {
engine: 'im',
sizes: [
/*
Change these:
width: ,
suffix: ,
quality:
*/
{name: 'small',
width: 320,
height: 240,
separator: '_',
quality: 80
},{
name: 'medium',
width: 800,
separator: '_',
suffix: '_1x',
quality: 60
},{
name: 'large',
width: 1600,
separator: '_',
suffix: '_2x',
quality: 30
}
]
},
/*
You don't need to change this part if you don't change
the directory structure.
*/
files: [{
expand: true,
src: ['*.{gif,jpg,png}'],
cwd: 'assets/images',
dest: 'assets/images_optimized/'
}]
}
},
/* Clear out the images directory if it exists */
clean: {
dev: {
src: ['assets/images_optimized'],
},
},
/* Generate the images directory if it is missing */
mkdir: {
dev: {
options: {
create: ['assets/images_optimized']
},
},
},
/* Copy the "fixed" images that don't go through processing into the images/directory */
copy: {
dev: {
files: [{
expand: true,
src: 'images_src/fixed/*.{gif,jpg,png}',
dest: 'assets/images_optimized/'
}]
},
},
});
grunt.loadNpmTasks('grunt-responsive-images');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-mkdir');
grunt.registerTask('default', ['clean', 'mkdir', 'copy', 'responsive_images']);
};