0
0

compiler for vanilla html/css

This commit is contained in:
thetek 2021-04-03 11:30:08 +02:00
parent 71db246658
commit 784a17b82a

19
ui/compile.sh Executable file
View File

@ -0,0 +1,19 @@
#! /bin/bash
### compile to regular html and css
# compile pug
pug raw/index.pug -o html
echo "<title>dnswatch</title>
<link rel=\"stylesheet\" href=\"index.css\">
<link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;700&amp;display=swap\">
<script src=\"index.js\"></script>
<script src=\"https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js\"></script>" | cat - html/index.html > temp
mv temp html/index.html
echo "<scipt src=\"feather.js\"></script>" >> html/index.html
# compile sass
sass raw/index.sass html/index.css
# move js
cp raw/*.js html