|
Ultima modificación |
Ver Log
|
Rev |
Autor |
Línea Nro. |
Línea |
1 |
www |
1 |
module.exports = function(grunt) {
|
|
|
2 |
return {
|
|
|
3 |
dynamic: {
|
|
|
4 |
options: {
|
|
|
5 |
optimizationLevel: 7,
|
|
|
6 |
},
|
|
|
7 |
files: [{
|
|
|
8 |
expand: true,
|
|
|
9 |
cwd: 'build/img',
|
|
|
10 |
src: ['**/*.{png,jpg,gif}'],
|
|
|
11 |
dest: 'build/img',
|
|
|
12 |
}],
|
|
|
13 |
},
|
|
|
14 |
};
|
|
|
15 |
};
|