0.1.1 • Published 5 years ago

gulp-snapex-html v0.1.1

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

gulp-snapex-html

本插件是基于 gulp-img64 拓展的检索多目录层级压缩插件,如果有需要的朋友可以直接下载原版插件,本例主要是用于公司内部开发,其他朋友谨慎使用。

Gulp Task:

var gulp = require('gulp');
var snapexHtml = require('gulp-snapex-html');

gulp.task('default', function () {
	gulp.src('index.html')
	.pipe(snapexHtml())
	.pipe(gulp.dest('path'));
});

index.html - Before:

<img src="sample.png" />

path/index.html - After:

<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAEACAYAAABccqhmAACksUlEQVR42ux9B5glV3F195ud2dkkaSXxE22SDTYigwwWSUQHsAgCEyTAgBAgE0wGA79JwiKDAIlkhEgiRxF[and so on...]">