Skip to content
Concatenate a set of Web Components into one file
JavaScript HTML
Find file
New pull request
Latest commit c904004 @sindresorhus 6.1.0
Failed to load latest commit information.
fixture Use the new api in Vulcanize 1.9.1
.editorconfig cleanup #20
.gitattributes init
.gitignore init
.jshintrc cleanup #20
.travis.yml Update .travis.yml
index.js Use the new api in Vulcanize 1.9.1
license tweaks
package.json 6.1.0
readme.md cleanup #20
test.js Fix tests on Windows

readme.md

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

Something went wrong with that request. Please try again.