Socket
Socket
Sign inDemoInstall

gulp-ztpl

Package Overview
Dependencies
65
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    gulp-ztpl

the gulp plugin for tmodjs


Version published
Weekly downloads
1
Maintainers
1
Install size
1.67 MB
Created
Weekly downloads
 

Readme

Source

gulp-ztpl

tmodjs's gulp version.

Install

$ npm install gulp-ztpl --save-dev

Usage

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

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

Keywords

FAQs

Last updated on 25 Sep 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc