Skip to content

Concatenate a set of Web Components into one file

License

Notifications You must be signed in to change notification settings

nguyenlamzx/gulp-vulcanize

 
 

Repository files navigation

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

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

gulp.task('default', function () {
	return 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

About

Concatenate a set of Web Components into one file

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 88.4%
  • HTML 11.6%