From 69ab4428606685c311736035a494d7bfd25ca7e7 Mon Sep 17 00:00:00 2001 From: Michael MacFadden Date: Sun, 3 Mar 2019 23:16:15 -0600 Subject: [PATCH] Copy the docs into the dist folder. --- gulpfile.babel.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/gulpfile.babel.js b/gulpfile.babel.js index 616f07e..737e144 100644 --- a/gulpfile.babel.js +++ b/gulpfile.babel.js @@ -25,6 +25,10 @@ const copyFiles = () => src(["README.md", "LICENSE.txt", "package.json"]) .pipe(dest("dist")); +const copyDocs = () => + src(["docs/**/*"]) + .pipe(dest("dist/docs")); + const umd = () => { const outputPath = "dist/umd"; @@ -88,7 +92,8 @@ const dist = series([ appendTypingsNamespace, css, minifyCss, - copyFiles]); + copyFiles, + copyDocs]); export { dist,