0
0
This repository has been archived on 2024-06-25. You can view files and clone it, but cannot push or open issues or pull requests.
dns-watch-2022/start/util/jhtml-compile.sh
thetek b4a89b2e58
🩹 various fixes (#15)
* 🩹 use `sassc` instead of `sass`

* ✏️ fix typo "regainig"

* 🩹 remove general info part of search help popup

* 🩹 use /lookup on current domain

* 📦️ compile html

* 📦️ compile jhtml
2021-07-29 12:55:18 +02:00

26 lines
674 B
Bash
Executable File

#! /bin/bash
### make code compatible with jhtml
# compile pug
pug ../src/index.pug -o ..
mv ../index.html ../index.php
echo "*title(\"dnswatch\")
*icon()
*style(\"///index.css\")
*style(\"https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;700&display=swap\")
*js(\"///index.js\")
*js(\"https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js\")
*postjs(\"///feather.js\")" | cat - ../index.php > temp
mv temp ../index.php
# compile sass
sassc ../src/index.sass ../index.css #--no-source-map
echo '*stop()' | cat - ../index.css > temp
mv temp ../index.css
# move js
cp ../src/*.js ..
echo '*stop()' | cat - ../index.js > temp
mv temp ../index.js