New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

gulp-tmodx

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-tmodx

the gulp plugin for tmodjs

latest
Source
npmnpm
Version
0.1.3
Version published
Weekly downloads
7
40%
Maintainers
1
Weekly downloads
 
Created
Source

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

Keywords

gulpplugin

FAQs

Package last updated on 16 Jul 2015

Did you know?

Socket

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