npm.io
0.1.1 • Published 9 years ago

gulp-flatraml

Licence
MIT
Version
0.1.1
Deps
3
Vulns
0
Weekly
0

This plugin allows combining a raml file and its dependencies into a unique file within the gulp pipeline mechanism.

Install with npm

npm install --save-dev gulp-flatraml

Add it in your gulpfile

const flat = require('gulp-flatraml');

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