8.0.0 • Published 5 years ago

gulp-vulcanize v8.0.0

Weekly downloads
3,083
License
MIT
Repository
github
Last release
5 years ago

Deprecated

The Vulcanize project is no more.


gulp-vulcanize Build Status

Concatenate a set of Web Components into one file with Vulcanize

Issues with the output should be reported on the Vulcanize issue tracker.

Install

$ npm install --save-dev gulp-vulcanize

Usage

const gulp = require('gulp');
const vulcanize = require('gulp-vulcanize');

gulp.task('default', () =>
	gulp.src('src/index.html')
		.pipe(vulcanize({
			abspath: '',
			excludes: [],
			stripExcludes: false
		}))
		.pipe(gulp.dest('dest'))
);

API

vulcanize(options)

See the Vulcanize options.

License

MIT © Sindre Sorhus