mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-22 01:46:51 +01:00
remove that responsive images grunt task
This commit is contained in:
parent
9fb0040d8b
commit
3e7047f842
34
Gruntfile.js
34
Gruntfile.js
@ -84,32 +84,6 @@ module.exports = function(grunt){
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
responsive_images: {
|
|
||||||
production: {
|
|
||||||
options: {
|
|
||||||
sizes: [{
|
|
||||||
name: 'small',
|
|
||||||
width: 320
|
|
||||||
},{
|
|
||||||
name: 'medium',
|
|
||||||
width: 640
|
|
||||||
},{
|
|
||||||
name: 'large',
|
|
||||||
width: 1280
|
|
||||||
},{
|
|
||||||
name: 'jumbo',
|
|
||||||
width: 2560
|
|
||||||
}]
|
|
||||||
},
|
|
||||||
files: [{
|
|
||||||
expand: true,
|
|
||||||
cwd: '_src/_media',
|
|
||||||
src: ['**.{jpg,jpeg,gif,png}'],
|
|
||||||
custom_dest: '_site/media/{%= width %}/'
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
// image optimization
|
// image optimization
|
||||||
imagemin: {
|
imagemin: {
|
||||||
assets: {
|
assets: {
|
||||||
@ -222,13 +196,7 @@ module.exports = function(grunt){
|
|||||||
'connect',
|
'connect',
|
||||||
'watch'
|
'watch'
|
||||||
]);
|
]);
|
||||||
|
|
||||||
// Images only tasks
|
|
||||||
grunt.registerTask('images', [
|
|
||||||
'responsive_images',
|
|
||||||
'imagemin'
|
|
||||||
]);
|
|
||||||
|
|
||||||
// Imagemin only task
|
// Imagemin only task
|
||||||
grunt.registerTask('imagemin', [
|
grunt.registerTask('imagemin', [
|
||||||
'imagemin'
|
'imagemin'
|
||||||
|
@ -3,7 +3,7 @@ module Jekyll
|
|||||||
class RsyncMediaFolder < Generator
|
class RsyncMediaFolder < Generator
|
||||||
def generate(site)
|
def generate(site)
|
||||||
system('mkdir -p _site'); # We may be called before _site exists.
|
system('mkdir -p _site'); # We may be called before _site exists.
|
||||||
system('rsync --archive _src/_media/ _site/media/');
|
system('rsync --archive --delete _src/_media/ _site/media/');
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
Loading…
Reference in New Issue
Block a user