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