tonix-gulp-html-autoprefixer
v1.3.0
Published
Gulp plugin to Autoprefix all CSS inside an HTML page - CSS inside style tags and inside style attributes. Uses tonix-html-autoprefixer under the hood.
Downloads
5
Maintainers
Readme
tonix-gulp-html-autoprefixer
This package is a fork of the original gulp-html-autoprefixer repo.
This fork comes with updated NPM packages.
The original README.md follows below this paragraph.
gulp-html-autoprefixer
Gulp plugin to Autoprefix all CSS inside an html page - CSS inside style tags and inside style attributes. Uses html-autoprefixer under the hood.
var gulp = require("gulp");
var htmlAutoprefixer = require("gulp-html-autoprefixer");
gulp.task("html-autoprefix", function () {
return gulp
.src("./path/to/index-or-other.html")
.pipe(htmlAutoprefixer())
.pipe(gulp.dest("dist"));
});
Installation
npm install gulp-html-autoprefixer --save-dev
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request