forked from udacity/mws-restaurant-stage-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
78 lines (69 loc) · 2.24 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
/*
After you have changed the settings at "Your code goes here",
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: [{
name: 'sm',
width: '270',
// suffix: '_270 1X',
quality: 20
}, {
name: 'med',
width: '540',
// suffix: '_540 2X',
quality: 40
}]
},
/*
You don't need to change this part if you don't change
the directory structure.
*/
files: [{
expand: true,
src: ['*.{gif,jpg,png}'],
cwd: 'img/',
dest: 'img/'
}]
}
},
/* Clear out the images directory if it exists */
/* clean: {
dev: {
src: ['img/dist/'],
},
}, */
/* Generate the images directory if it is missing */
mkdir: {
dev: {
options: {
create: ['img/dist/']
},
},
},
/* Copy the "fixed" images that don't go through processing into the images/directory */
copy: {
dev: {
files: [{
expand: true,
src: 'img/*.{gif,jpg,png}',
dest: 'img/dist/'
}]
},
},
});
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']);
grunt.registerTask('default', ['mkdir', 'responsive_images']);
};