From 89a3a665ed018744aa32219c8d096980061f9a76 Mon Sep 17 00:00:00 2001 From: Niggl Date: Sat, 29 Aug 2020 14:02:59 +0200 Subject: [PATCH] Removed all the demo stuff --- gulpfile.js | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index c35cea7..9d2541d 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -114,16 +114,13 @@ function demoCss() { function watchFiles() { watch('./src/html/component.html', html); watch('./src/scss/component.scss', css); - watch(['./src/js/mailymaily.js', './package.json'], series(js, lintDemoJs, processDemoJs)); - watch('./demo/demo.scss', demoCss); - watch('./demo/demo.js', demoJs); + watch(['./src/js/mailymaily.js', './package.json']); } /** * Define complex tasks. */ -const demoJs = series(lintDemoJs, processDemoJs); -const build = series(parallel(html, css), js, demoJs, demoCss); +const build = series(parallel(html, css), js); const watching = series(build, watchFiles); /** @@ -132,7 +129,5 @@ const watching = series(build, watchFiles); exports.html = html; exports.css = css; exports.js = js; -exports.demoJs = demoJs; -exports.demoCss = demoCss; exports.watch = watching; exports.default = build;