From 36380a0097e95dad06eb1cedc334d658ed539997 Mon Sep 17 00:00:00 2001 From: Sainan Date: Thu, 30 May 2024 14:05:23 +0200 Subject: [PATCH] Move libs into a separate directory --- .prettierignore | 2 +- static/webui/index.html | 12 ++++++------ static/webui/{ => libs}/RivenParser.js | 0 static/webui/{ => libs}/bootstrap.bundle.min.js | 0 static/webui/{ => libs}/bootstrap.min.css | 0 static/webui/{ => libs}/jquery-3.6.0.min.js | 0 static/webui/{ => libs}/single.js | 0 static/webui/{ => libs}/whirlpool-js.min.js | 0 8 files changed, 7 insertions(+), 7 deletions(-) rename static/webui/{ => libs}/RivenParser.js (100%) rename static/webui/{ => libs}/bootstrap.bundle.min.js (100%) rename static/webui/{ => libs}/bootstrap.min.css (100%) rename static/webui/{ => libs}/jquery-3.6.0.min.js (100%) rename static/webui/{ => libs}/single.js (100%) rename static/webui/{ => libs}/whirlpool-js.min.js (100%) diff --git a/.prettierignore b/.prettierignore index 863bcf38..7b977582 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1 +1 @@ -static/webui/*.min.* +static/webui/libs/ diff --git a/static/webui/index.html b/static/webui/index.html index 09bfa32f..52efb967 100644 --- a/static/webui/index.html +++ b/static/webui/index.html @@ -3,7 +3,7 @@ OpenWF WebUI - + @@ -152,11 +152,11 @@ - - - - + + + + - + diff --git a/static/webui/RivenParser.js b/static/webui/libs/RivenParser.js similarity index 100% rename from static/webui/RivenParser.js rename to static/webui/libs/RivenParser.js diff --git a/static/webui/bootstrap.bundle.min.js b/static/webui/libs/bootstrap.bundle.min.js similarity index 100% rename from static/webui/bootstrap.bundle.min.js rename to static/webui/libs/bootstrap.bundle.min.js diff --git a/static/webui/bootstrap.min.css b/static/webui/libs/bootstrap.min.css similarity index 100% rename from static/webui/bootstrap.min.css rename to static/webui/libs/bootstrap.min.css diff --git a/static/webui/jquery-3.6.0.min.js b/static/webui/libs/jquery-3.6.0.min.js similarity index 100% rename from static/webui/jquery-3.6.0.min.js rename to static/webui/libs/jquery-3.6.0.min.js diff --git a/static/webui/single.js b/static/webui/libs/single.js similarity index 100% rename from static/webui/single.js rename to static/webui/libs/single.js diff --git a/static/webui/whirlpool-js.min.js b/static/webui/libs/whirlpool-js.min.js similarity index 100% rename from static/webui/whirlpool-js.min.js rename to static/webui/libs/whirlpool-js.min.js