All Projects → sindresorhus → Gulp Vulcanize

sindresorhus / Gulp Vulcanize

Licence: mit
Concatenate a set of Web Components into one file

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Gulp Vulcanize

Polymer Cli
Moved to Polymer/tools monorepo
Stars: ✭ 518 (+412.87%)
Mutual labels:  web-components, polymer
Paper Timezone
Polymer based timezone selection component
Stars: ✭ 19 (-81.19%)
Mutual labels:  web-components, polymer
Polymer
Our original Web Component library.
Stars: ✭ 21,723 (+21407.92%)
Mutual labels:  web-components, polymer
Vaadin Core
An evolving set of free, open source web components for building mobile and desktop web applications in modern browsers.
Stars: ✭ 382 (+278.22%)
Mutual labels:  web-components, polymer
Flip Clock
A flip clock, timer and countdown made with Polymer
Stars: ✭ 69 (-31.68%)
Mutual labels:  web-components, polymer
Vaadin
An evolving set of open source web components for building mobile and desktop web applications in modern browsers.
Stars: ✭ 424 (+319.8%)
Mutual labels:  web-components, polymer
Gdg.es
The GDG Spain official website
Stars: ✭ 16 (-84.16%)
Mutual labels:  web-components, polymer
TimeDoser-v2
🕑 Dosify your time (version 2, retired)
Stars: ✭ 52 (-48.51%)
Mutual labels:  polymer, web-components
L2t Paper Slider
Polymer element for displaying slides in a carousel
Stars: ✭ 53 (-47.52%)
Mutual labels:  web-components, polymer
Vaadin Charts
Vaadin Charts is a feature-rich interactive graph library that answers the data visualization needs of modern web applications
Stars: ✭ 47 (-53.47%)
Mutual labels:  web-components, polymer
Web Components Todo
A simple todo list built with various Web Components technologies
Stars: ✭ 368 (+264.36%)
Mutual labels:  web-components, polymer
Gulp Ngmin
[DEPRECATED] Pre-minify AngularJS apps with ngmin
Stars: ✭ 89 (-11.88%)
Mutual labels:  gulp-plugin, deprecated
nuxeo-web-ui
New Nuxeo Web UI
Stars: ✭ 51 (-49.5%)
Mutual labels:  polymer, web-components
Gulp Ruby Sass
Compile Sass to CSS with Ruby Sass
Stars: ✭ 476 (+371.29%)
Mutual labels:  gulp-plugin, deprecated
PolymerProjects
An open list of projects using Polymer
Stars: ✭ 83 (-17.82%)
Mutual labels:  polymer, web-components
Web Component Tester
Moved to Polymer/tools monorepo
Stars: ✭ 571 (+465.35%)
Mutual labels:  web-components, polymer
web-components-good-practices
😎☑️ Good Practices for build Web Components.
Stars: ✭ 80 (-20.79%)
Mutual labels:  polymer, web-components
vaadin-checkbox
The Web Component for customized checkboxes. Part of the Vaadin components.
Stars: ✭ 18 (-82.18%)
Mutual labels:  polymer, web-components
Contactlab Ui Components
DEPRECATED - Basic UI components for ContactLab UX design pattern library
Stars: ✭ 31 (-69.31%)
Mutual labels:  web-components, polymer
Polymer Bundler
Moved to Polymer/tools monorepo
Stars: ✭ 1,206 (+1094.06%)
Mutual labels:  web-components, polymer

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].