0.1.1 • Published 7 years ago

gulp-flatraml v0.1.1

Weekly downloads
46
License
MIT
Repository
github
Last release
7 years ago

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'));
});