0.1.3 • Published 9 years ago

gulp-tmodx v0.1.3

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

gulp-tmod

NPM version Build Status Dependency Status

tmodjs's gulp version.

Install

$ npm install gulp-tmod --save-dev

Usage

var tmodjs = require('gulp-tmod');

gulp.task('default', function(){

	return gulp.src('./test/tpl/**/*.html')
			.pipe(tmodjs({
				base: './test/tpl',
				combo: true,
				output: './test/dist'
			}));

});

Watch

gulp.task('watch', function(){
	return gulp.src('./test/tpl/**/*.html')
			.pipe(watch(function(files){
				files.pipe(tmodjs({
					base: './test/tpl',
					combo: true,
					output: './test/dist'
				}));
			}));
});

More see gulp-watch

Test

$ npm test

More

See tmodjs

grunt-tmod

Issues should be reported on the tmodjs issue tracker