# gulp-flatraml

> Use flat-raml in a gulpy fashion.

Latest version **0.1.1** (published 2016-11-21) · MIT license · 0 weekly downloads

## Install

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

## 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.1.1 |
| Published | 2016-11-21 |
| First published | 2016-11-21 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Maintainers | jihoun |
| Keywords | gulp, flat-raml, raml |

## Links

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

## Dependencies (3)

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

## Recent versions

- 0.1.1 (latest) — 2016-11-21
- 0.1.0 — 2016-11-21

## README

This plugin allows combining a raml file and its dependencies into a unique file within the gulp
pipeline mechanism.
# Install with npm
```batch
npm install --save-dev gulp-flatraml
```

# Add it in your gulpfile
```js
const flat = require('gulp-flatraml');

gulp.task('flatten', function() {
    return gulp.src('*.raml')
    .pipe(flat())
    .pipe(gulp.dest('dist'));
});
```

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