https://github.com/oosugi20/gulp-resolverefs
Resolve splited YAML to JSON (OPS)
https://github.com/oosugi20/gulp-resolverefs
gulp json ref resolve swagger yaml
Last synced: 3 months ago
JSON representation
Resolve splited YAML to JSON (OPS)
- Host: GitHub
- URL: https://github.com/oosugi20/gulp-resolverefs
- Owner: oosugi20
- License: mit
- Created: 2017-07-11T08:47:02.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-11T09:25:02.000Z (almost 9 years ago)
- Last Synced: 2026-03-21T00:18:48.847Z (3 months ago)
- Topics: gulp, json, ref, resolve, swagger, yaml
- Language: JavaScript
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gulp-resolverefs
Resolve splited YAML to JSON (OPS)
# Usage
```javascript
var resolveRefs = require('gulp-resolverefs');
gulp.task('resolve-refs-json', function () {
return gulp.src('./test/yaml/index.yaml')
.pipe('index.json')
.pipe(gulp.dest('./dist/'));
});
```