# gulp-vulcanize

> Concatenate a set of Web Components into one file

Latest version **8.0.0** (published 2018-11-08) · MIT license · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

```sh
npm install gulp-vulcanize
pnpm add gulp-vulcanize
yarn add gulp-vulcanize
bun add gulp-vulcanize
```

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 8.0.0 |
| Published | 2018-11-08 |
| First published | 2014-01-08 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=4 |
| Dependencies | 4 |
| Unpacked size | 3.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 101 |
| Author | Sindre Sorhus |
| Maintainers | sindresorhus |
| Keywords | gulpplugin, polymer, vulcanize, vulcan, rewriting, transformation, concat, concatenate, web, components |

## Links

- npm: https://www.npmjs.com/package/gulp-vulcanize
- Repository: https://github.com/sindresorhus/gulp-vulcanize
- Homepage: https://github.com/sindresorhus/gulp-vulcanize#readme
- Issues: https://github.com/sindresorhus/gulp-vulcanize/issues
- npm.io page: https://npm.io/package/gulp-vulcanize

## Dependencies (4)

- [through2](https://npm.io/package/through2.md) ^2.0.0
- [vulcanize](https://npm.io/package/vulcanize.md) ^1.9.1
- [safe-buffer](https://npm.io/package/safe-buffer.md) ^5.1.1
- [plugin-error](https://npm.io/package/plugin-error.md) ^0.1.2

## Alternatives

- [@opentelemetry/exporter-zipkin](https://npm.io/package/@opentelemetry/exporter-zipkin.md) — 14.8M weekly downloads
- [pusher-js](https://npm.io/package/pusher-js.md) — 2.0M weekly downloads
- [browserify](https://npm.io/package/browserify.md) — 1.7M weekly downloads
- [sqs-consumer](https://npm.io/package/sqs-consumer.md) — 1.7M weekly downloads
- [@sanity/eventsource](https://npm.io/package/@sanity/eventsource.md) — 930.8K weekly downloads

## Recent versions

- 8.0.0 (latest) — 2018-11-08
- 7.0.0 — 2017-12-31
- 6.1.0 — 2015-11-14
- 6.0.1 — 2015-06-08
- 6.0.0 — 2015-04-16
- 5.0.0 — 2014-11-23
- 4.0.0 — 2014-11-18
- 3.1.0 — 2014-11-04
- 3.0.0 — 2014-11-04
- 2.0.0 — 2014-10-29
- 1.1.0 — 2014-09-14
- 1.0.0 — 2014-08-14
- 0.2.1 — 2014-07-26
- 0.2.0 — 2014-06-28
- 0.1.1 — 2014-01-19
- … 1 more at https://npm.io/package/gulp-vulcanize/versions

## README

# Deprecated

The Vulcanize project is no more.

---

# gulp-vulcanize [![Build Status](https://travis-ci.org/sindresorhus/gulp-vulcanize.svg?branch=master)](https://travis-ci.org/sindresorhus/gulp-vulcanize)

> Concatenate a set of Web Components into one file with [`Vulcanize`](https://github.com/Polymer/vulcanize)

*Issues with the output should be reported on the `Vulcanize` [issue tracker](https://github.com/Polymer/vulcanize/issues).*


## Install

```
$ npm install --save-dev gulp-vulcanize
```


## Usage

```js
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](https://github.com/Polymer/vulcanize#using-vulcanize-programmatically).


## License

MIT © [Sindre Sorhus](https://sindresorhus.com)

---
_Source: https://npm.io/package/gulp-vulcanize · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
