0.2.0 • Published 9 years ago

gulp-enhanced-vulcanize v0.2.0

Weekly downloads
2
License
MIT
Repository
gitlab
Last release
9 years ago

gulp-enhanced-vulcanize

Fork from vulcanize and support less

Concatenate a set of Web Components into one file with Vulcanize

Fully Supporting less when build polymer elements with inline style

Install

$ npm install --save-dev gulp-enhanced-vulcanize

Usage

var gulp = require('gulp');
var vulcanize = require('gulp-enhanced-vulcanize');

gulp.task('default', function () {
	gulp.src("path/to/*")
		.pipe(vulcanize({
			dest: DEST_DIR,
			strip: true,
			inline: true
		}))
		.pipe(gulp.dest(DEST_DIR));
});

API

vulcanize(options)

These options plus the below.

options.dest

Required
Type: string

The destination directory.

Unfortunately needed to get correct relative paths in the output.

0.2.0

9 years ago

0.1.4

9 years ago

0.1.3

9 years ago

0.1.2

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago

0.0.6

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago