# plumber-concat

> Concatenation operation for Plumber pipelines

Latest version **0.2.2** (published 2014-10-13) · GPL license · 0 weekly downloads

## Install

```sh
npm install plumber-concat
pnpm add plumber-concat
yarn add plumber-concat
bun add plumber-concat
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.2.2 |
| Published | 2014-10-13 |
| First published | 2014-01-02 |
| Weekly downloads | 0 |
| License | GPL |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Sébastien Cevey |
| Maintainers | theefer |
| Keywords | build, assets, pipeline, plumber |

## Links

- npm: https://www.npmjs.com/package/plumber-concat
- Repository: https://github.com/plumberjs/plumber-concat
- Issues: https://github.com/plumberjs/plumber-concat/issues
- npm.io page: https://npm.io/package/plumber-concat

## Dependencies (1)

- [mercator](https://npm.io/package/mercator.md) ~0.1.4

## Alternatives

- [raw-loader](https://npm.io/package/raw-loader.md) — 4.3M weekly downloads
- [plop](https://npm.io/package/plop.md) — 1.4M weekly downloads
- [webpack-deadcode-plugin](https://npm.io/package/webpack-deadcode-plugin.md) — 80.3K weekly downloads
- [@storybook/preact-vite](https://npm.io/package/@storybook/preact-vite.md) — 54.2K weekly downloads
- [vite-plugin-transform](https://npm.io/package/vite-plugin-transform.md) — 2.4K weekly downloads

## Recent versions

- 0.2.2 (latest) — 2014-10-13
- 0.4.0 — 2014-07-03
- 0.3.1 — 2014-03-05
- 0.3.0 — 2014-03-05
- 0.2.1 — 2014-02-02
- 0.2.0 — 2014-02-02
- 0.1.4 — 2014-01-19
- 0.1.3 — 2014-01-12
- 0.1.2 — 2014-01-06
- 0.1.1 — 2014-01-03
- 0.1.0 — 2014-01-02

## README

plumber-concat [![Build Status](https://travis-ci.org/plumberjs/plumber-concat.png?branch=master)](https://travis-ci.org/plumberjs/plumber-concat)
==============

Concatenation operation for [Plumber](https://github.com/plumberjs/plumber) pipelines.

## Example

    var concat = require('plumber-concat');

    module.exports = function(pipelines) {

        pipelines['compile'] = [
            all(
                glob('main.js'),
                bower('jquery', 'jquery.min.js')
            ),
            concat('app'), // => single `app.js' resource
            // ... more pipeline operations
        ];

    };


## API

### `concat(newName)`

Concatenate all input resources into a single one, under the given new name.

All input resources must be of the same type, else the operation will fail.

Source maps for all input resources will be updated or generated accordingly.

Note: the `newName` should **not** include the file extension. The extension is managed and added automatically.

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