# gulp-margejs

> A litte tools to marge js files,you can do everything in callback function

Latest version **1.0.0** (published 2016-02-19) · MIT license · 0 weekly downloads

## Install

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

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2016-02-19 |
| First published | 2016-02-19 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | SmallGress |
| Maintainers | smallgress |
| Keywords | marge, js |

## Links

- npm: https://www.npmjs.com/package/gulp-margejs
- Repository: https://github.com/SmallGress
- npm.io page: https://npm.io/package/gulp-margejs

## Dependencies (2)

- [through2](https://npm.io/package/through2.md) ^2.0.1
- [gulp-util](https://npm.io/package/gulp-util.md) ^3.0.7

## Alternatives

- [@mapbox/jsonlint-lines-primitives](https://npm.io/package/@mapbox/jsonlint-lines-primitives.md) — 5.3M weekly downloads
- [reftools](https://npm.io/package/reftools.md) — 3.5M weekly downloads
- [@hey-api/openapi-ts](https://npm.io/package/@hey-api/openapi-ts.md) — 3.5M weekly downloads
- [@mapbox/geojson-rewind](https://npm.io/package/@mapbox/geojson-rewind.md) — 2.4M weekly downloads
- [turbo-stream](https://npm.io/package/turbo-stream.md) — 1.7M weekly downloads

## Recent versions

- 1.0.0 (latest) — 2016-02-19

## README

# gulp-margeJS

## Usage

```js
var gulp = require("gulp");
var marge = require("gulp-margejs");

gulp.task("default",function(){
       gulp.src("*.js")
           .pipe(marge())
           .pipe(gulp.dest("./js"))
})
```


```js
var marge = require("gulp-margejs");

gulp.task("default",function(){
       gulp.src("*.js")
           .pipe(marge(function(file){
                //content
                return file
           }))
           .pipe(gulp.dest("./js"))
})
```

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