0.1.2 • Published 5 years ago

gulp-htl v0.1.2

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

HTL gulp plugin

NPM

sonarcloud.io status

Install

$ npm install --save-dev gulp
$ npm install --save-dev gulp-htl

For the example below you'll also need

$ npm install --save-dev gulp-rename

Usage

const gulp = require('gulp');
const rename = require('gulp-rename');
const htl = require('gulp-htl');

gulp.task('default', () =>
	gulp.src(['src/**/*.html', '!src/**/*.spec.html'])
		.pipe(htl())
		.pipe(rename({extname:'.spec.html'}))
		.pipe(gulp.dest('src'))
);

Thanks

Thanks to LatourJ for working out some of the quirks the HTL compiler in their project

License

MIT © Cerys Williams

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago

0.0.9

5 years ago

0.0.8

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago

0.0.0

5 years ago