gulp-picture
v0.1.2
Published
Gulp plugin to change html img tag into picture tag.
Downloads
2
Readme
:construction::warning: gulp-picture
A gulp plugin that replace html image tags by picture tags. This plugin works with gulp-responsive
.
Installation
npm install --save-dev gulp-picture
How to use it ?
The array for breakpoints is the same as gulp-responsive.
const { src, dist, task } = require('gulp')
const picture = require('gulp-picture')
const breakpoints = [
{
width: 200,
rename: {
suffix: '-200px'
}
}, {
width: 400,
rename: {
suffix: '-400px'
}
}, {
rename: {
suffix: '-original'
}
}
]
const html = () => {
return src('src/*.html')
.pipe(picture({
breakpoints
}))
}
task('html', html)
Install
# Clone the project
git clone https://github.com/botflux/gulp-picture.git
# Install node modules
npm install
# Run tests
npm test
# Start gulp
gulp
Note
This implementation is just a 'sandbox'. The guidelines are not respected. This plugin is in development.