All Projects → jonschlinkert → Gulp Htmlmin

jonschlinkert / Gulp Htmlmin

Licence: mit
Minify HTML

Projects that are alternatives of or similar to Gulp Htmlmin

frontend-starter-kit-with-gulp
Frontend Starter Kit with Gulp for either Themeforest Projects or customizable projects.
Stars: ✭ 34 (-95.28%)
Mutual labels:  gulp, minify
Gulp Boilerplate
A boilerplate for building web projects with Gulp.js.
Stars: ✭ 840 (+16.67%)
Mutual labels:  gulp, minify
web-generator
👑 Gulp based task runner which creates HTML output from Pug HTML templates
Stars: ✭ 13 (-98.19%)
Mutual labels:  gulp, minify
Glup
Some of the gulp tutorial -《gulp笔记》
Stars: ✭ 136 (-81.11%)
Mutual labels:  gulp, minify
Packem
📦⚡ A precompiled JavaScript module bundler
Stars: ✭ 586 (-18.61%)
Mutual labels:  minify, plugin
Slinky
A light-weight, responsive, mobile-like navigation menu plugin
Stars: ✭ 649 (-9.86%)
Mutual labels:  plugin
Vue Stripe
Stripe Checkout & Elements for Vue.js
Stars: ✭ 669 (-7.08%)
Mutual labels:  plugin
Sdk
Evolve the Android notification experience of existing apps, with community-driven plug-ins.
Stars: ✭ 632 (-12.22%)
Mutual labels:  plugin
Calendar
微信小程序日历插件
Stars: ✭ 631 (-12.36%)
Mutual labels:  plugin
Generator Ng Fullstack
Client, server or fullstack - it's up to you. ng-fullstack gives you the best of the latest.
Stars: ✭ 701 (-2.64%)
Mutual labels:  gulp
Vue Progressive Image
Vue progressive image loading plugin
Stars: ✭ 684 (-5%)
Mutual labels:  plugin
Landrush
A Vagrant plugin that provides a simple DNS server for Vagrant guests
Stars: ✭ 665 (-7.64%)
Mutual labels:  plugin
Sonar Cxx
SonarQube C++ plugin (Community): This plugin adds C++ support to SonarQube with the focus on integration of existing C++ tools.
Stars: ✭ 649 (-9.86%)
Mutual labels:  plugin
Mediumlightbox
Nice and elegant way to add zooming functionality for images, inspired by medium.com
Stars: ✭ 671 (-6.81%)
Mutual labels:  plugin
Vscode Plugin Demo
VSCode插件开发全攻略配套demo
Stars: ✭ 647 (-10.14%)
Mutual labels:  plugin
Input Overlay
Show keyboard, gamepad and mouse input on stream
Stars: ✭ 684 (-5%)
Mutual labels:  plugin
Gulp Clean Css
Minify css with clean-css.
Stars: ✭ 631 (-12.36%)
Mutual labels:  gulp
Tyto
manage and organise things
Stars: ✭ 662 (-8.06%)
Mutual labels:  gulp
Tandem
Typing in Tandem. Decentralized, cross-editor, collaborative text-editing!
Stars: ✭ 678 (-5.83%)
Mutual labels:  plugin
Scxcodeswitchexpander
Xcode plugin that enables switch cases autocompletion
Stars: ✭ 662 (-8.06%)
Mutual labels:  plugin

gulp-htmlmin NPM version NPM monthly downloads NPM total downloads Linux Build Status

gulp plugin to minify HTML.

Please consider following this project's author, Jon Schlinkert, and consider starring the project to show your ❤️ and support.

Install

Install with npm:

$ npm install --save gulp-htmlmin

Heads up!

Please do not report issues related to HTML parsing and output on this repository. Report those issues to the html-minifier issue tracker.

Usage

See the html-minifer docs for all available options.

const gulp = require('gulp');
const htmlmin = require('gulp-htmlmin');

gulp.task('minify', () => {
  return gulp.src('src/*.html')
    .pipe(htmlmin({ collapseWhitespace: true }))
    .pipe(gulp.dest('dist'));
});

About

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Running Tests

Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:

$ npm install && npm test
Building docs

(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)

To generate the readme, run the following command:

$ npm install -g verbose/verb#dev verb-generate-readme && verb

Contributors

Commits Contributor
41 shinnn
20 jonschlinkert
11 doowb
7 stevelacy
2 TheDancingCode
1 cwonrails
1 igoradamenko
1 oblador
1 jdalton
1 JoseChirivella14
1 nschloe
1 tomByrer

Author

Jon Schlinkert

Shinnosuke Watanabe

License

Copyright © 2018, Shinnosuke Watanabe. Released under the MIT License.


This file was generated by verb-generate-readme, v0.6.0, on September 08, 2018.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].