The Vulcanize project is no more.
Concatenate a set of Web Components into one file with
Vulcanize
Issues with the output should be reported on the Vulcanize
issue tracker.
$ npm install --save-dev gulp-vulcanize
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'))
);
See the Vulcanize
options.
MIT © Sindre Sorhus