# webpack-concat

> Plugin for Concating files in Webpack 4

Latest version **0.0.4** (published 2019-03-23) · MIT license · 0 weekly downloads

## Install

```sh
npm install webpack-concat
pnpm add webpack-concat
yarn add webpack-concat
bun add webpack-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.0.4 |
| Published | 2019-03-23 |
| First published | 2019-03-11 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 2.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | sai umesh |
| Maintainers | saiumeshdhanewar |
| Keywords | webpack, webpack plugin, webpack concat, webpack merge |

## Links

- npm: https://www.npmjs.com/package/webpack-concat
- Repository: https://github.com/saiumesh535/webpack-concat-plugin
- Issues: https://github.com/saiumesh535/webpack-concat-plugin/issues
- npm.io page: https://npm.io/package/webpack-concat

## 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.0.4 (latest) — 2019-03-23
- 0.0.3 — 2019-03-12
- 0.0.2 — 2019-03-11
- 0.0.1 — 2019-03-11

## README

# webpack-concat-plugin
Concat files for Webpack 4.X

###Example

```js

const WebPackConcatPlugin = require('webpack-concat');

module.exports = {
    module: {
        rules: [
            {
                test: /\.(js|jsx)$/,
                exclude: /node_modules/,
                use: {
                    loader: "babel-loader"
                }
            }
        ]
    },
    // it will concat **files** in given order and
    // concat them into single **output** file
    plugins: [
        new WebPackConcatPlugin({
            buildPath: ['build', 'prod'],
            output: 'output.js',
            files: ['file1.js', 'file2.js']
        }),
    ]
};


```

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