gulp-tmodx
v0.1.3
Published
the gulp plugin for tmodjs
Downloads
18
Maintainers
Readme
gulp-tmod
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
Issues should be reported on the tmodjs issue tracker