diff --git a/gulpfile.ts b/gulpfile.ts index 0189f47..9bae2c0 100644 --- a/gulpfile.ts +++ b/gulpfile.ts @@ -16,8 +16,8 @@ const context = new Context(); */ export function Docs(): NodeJS.ReadWriteStream { - return src(join(context.ProjectRoot, "docs")).pipe( - dest(context.StaticPath())); + return src(join(context.ProjectRoot, "docs", "**", "*")).pipe( + dest(context.StaticPath("docs"))); } /**