todod/project.zsh

86 lines
1.8 KiB
Bash
Raw Normal View History

2019-07-06 02:35:50 +02:00
package=kanban
version=0.1
targets=()
targets+=(public/main.js)
type[public/main.js]=livescript
sources[public/main.js]=client/index.ls
depends[public/main.js]="$(ls client/*.ls | grep -v /index.ls$ | tr '\n' ' ')"
targets+=(public/style.css)
type[public/style.css]=css
sources[public/style.css]=client/style.sass
#
# implementation details below, bruh~
# (seriously, dont read that unless you want to read that)
# (I mean it, dude)
#
function LSC {
echo "${fg_bold[blue]} LSC > ${fg_bold[white]}$@${reset_color}"
}
function BUN {
echo "${fg_bold[green]} BUN > ${fg_bold[white]}$@${reset_color}"
}
function MIN {
echo "${fg_bold[red]} MIN > ${fg_bold[white]}$@${reset_color}"
}
function CSS {
echo "${fg_bold[yellow]} CSS > ${fg_bold[white]}$@${reset_color}"
}
function livescript.build {
write "${target}: ${target%.js}.bundle.js $(dirname $target)"
write "\t@echo '$(MIN ${target%.js}.js)'"
write "\t${Q}npx babel --minified ${target%.js}.bundle.js -o ${target}"
write "\n"
write "${target%.js}.bundle.js: ${sources[$target]} ${depends[$target]} $(dirname $target)"
write "\t@echo '$(BUN ${target%.js}.bundle.js)'"
write "\t${Q}npx browserify -t browserify-livescript ${sources[$target]} -o ${target%.js}.bundle.js"
write "\n"
}
function livescript.clean {
write "${target}.clean:"
for file in ${target} ${target%.js}.bundle.js; do
write "\t@echo '$(RM ${file})'"
write "\t${Q}rm -f ${file}"
done
write "\n"
}
function livescript.install {
: FIXME
}
function livescript.uninstall {
: FIXME
}
function css.build {
write "${target}: ${sources[$target]} $(dirname $target)"
write "\t@echo '$(CSS ${target})'"
write "\t${Q}sassc ${sources[$target]} > ${target}"
write "\n"
}
function css.clean {
script.clean "$@"
}
function css.install {
: FIXME
}
function css.uninstall {
: FIXME
}