From 1a2d41b87be1de55852ce37bd3a0a34ffe52a386 Mon Sep 17 00:00:00 2001
From: Kyle Pollard <kylejrp@gmail.com>
Date: Mon, 27 May 2019 21:32:28 -0700
Subject: [PATCH] Fixed /docs references in gulpfile

---
 gulpfile.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gulpfile.js b/gulpfile.js
index 01f8ad0..62fb394 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -19,7 +19,7 @@ const postcssColorModFunction = require('postcss-color-mod-function').bind(null,
 
 const paths = {
   srcDir: 'src/*',
-  docsDir: 'docs/*',
+  docsDir: '*',
   styles: { src: 'src/builds/*.css', dest: 'dist' },
 }
 
@@ -117,7 +117,7 @@ function watch() {
     server: {
       baseDir: './',
     },
-    startPath: 'docs/index.html',
+    startPath: 'index.html',
   })
 
   gulp.watch(paths.srcDir, style)