feat: refactor config to use lua modules

This commit is contained in:
2021-08-12 13:12:30 +02:00
parent 1e65796eb8
commit c40c6dbeef
9 changed files with 535 additions and 195 deletions

View File

@ -1,21 +0,0 @@
function y(){
word=$(echo "$1" | fold -w 1)
for char in $(echo $word)
do
if [ $char = "i" ]; then
pnpm i -r
elif [ $char = "d" ]; then
pnpm dev
elif [ $char = "b" ]; then
pnpm build
elif [ $char = "a" ]; then
pnpm add
elif [ $char = "u" ]; then
pnpm upgrade
elif [ $char = "t" ]; then
pnpm test
elif [ $char = "c" ]; then
pnpm coverage
fi
done
}