Separate: task 'IMAGE' and create module for 'load-config-grunt'

This commit is contained in:
Arno Roldao Junior
2016-06-23 11:48:31 -03:00
parent f91a394270
commit fdd077c936

14
grunt-tasks/image.js Normal file
View File

@@ -0,0 +1,14 @@
'use strict';
module.exports = function (grunt) {
return {
dynamic: {
files: [{
expand: true,
cwd: 'build/img/',
src: ['**/*.{png,jpg,gif,svg,jpeg}'],
dest: 'dist/img/'
}]
}
};
};