Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ const tasks = Array.from(sourcesMap).flatMap(([type, definition]) => {
}
})

return gulp.src(source)
return gulp.src(source, { ignore: ['**/target/**'] })
.pipe(filterFn)
.pipe(
map((file, done) => {
Expand Down Expand Up @@ -409,7 +409,7 @@ const tasks = Array.from(sourcesMap).flatMap(([type, definition]) => {
return done()
}

return gulp.src(source) // asciidoc files
return gulp.src(source, { ignore: ['**/target/**'] }) // asciidoc files
.pipe(through2.obj(extractExamples)) // extracted example files
// symlink links from a fixed directory, i.e. we could link to
// the example files from `destination`, that would not work for
Expand Down
Loading