Since this lib doesn't return the stream of files at the end of it's operation I end up piping my input file to my destination. Also by default the source should just use the dir from the slate in node_modules since it's required for this lib to run anyway.
return gulp
.src('swagger-api.md')
.pipe(slate({
source: 'docs'
}))
.pipe(gulp.dest('build/docs'));