0.0.4 • Published 9 years ago

gulp-entomic v0.0.4

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

gulp-entomic

Gulp plugin for the Entomic templating engine

Usage

var entomic = require('gulp-entomic');

gulp.task('entomic', function(){
	gulp.src('./src/**/*.html')
		.pipe(entomic())
		.pipe(gulp.dest('./dist'));
});

constructor(options)

options.componentPath

Folder path where entomic components are located.

Type: String
Default: node_modules

options.stylePath

Output path to place styles.

Type: String
Default: style

options.scriptPath

Output path to place scripts.

Type: String
Default: script

options.assetPath

Output path to place assets.

Type: String
Default: asset