From d1747912fa1f67f049c459004330655d5e001676 Mon Sep 17 00:00:00 2001 From: Luka Vandervelden Date: Mon, 9 Dec 2019 23:31:45 +0100 Subject: [PATCH] Added client index.html and project.zsh entries. --- client/index.html | 12 ++++++++++++ project.zsh | 8 ++++++++ 2 files changed, 20 insertions(+) create mode 100644 client/index.html diff --git a/client/index.html b/client/index.html new file mode 100644 index 0000000..0417d01 --- /dev/null +++ b/client/index.html @@ -0,0 +1,12 @@ + + + + AuthD + + + + + + + + diff --git a/project.zsh b/project.zsh index 7954b6f..d201c43 100644 --- a/project.zsh +++ b/project.zsh @@ -7,4 +7,12 @@ type[authd]=crystal sources[authd]=src/main.cr depends[authd]="$(ls src/*.cr | grep -v '/main.cr$' | tr '\n' ' ')" +targets+=(client/main.js) +type[client/main.js]=livescript +sources[client/main.js]=client/index.ls +depends[client/main.js]="$(ls client/*.ls | grep -v '/index.ls$' | tr '\n' ' ')" + +targets+=(client/style.css) +type[client/style.css]=sass +sources[client/style.css]=client/style.sass