From 0e25c96cd10a47f305c4b368458d433933150946 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Fri, 23 Dec 2022 21:03:55 +0100 Subject: [PATCH] Fix broken docs creation --- gulpfile.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"))); } /**