A music player that connects to your cloud/distributed storage.
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add mkdir command to css tasks

+4
+4
Justfile
··· 33 33 @css: 34 34 echo "> Compiling CSS" 35 35 36 + mkdir -p {{SRC_DIR}}/Library/Css/ 37 + 36 38 {{ETC_CMD}} {{SRC_DIR}}/Css/About.css \ 37 39 --config {{SYSTEM_DIR}}/Css/Tailwind.js \ 38 40 --output {{BUILD_DIR}}/about.css \ ··· 52 54 53 55 @css-prod: 54 56 echo "> Optimising CSS" 57 + 58 + mkdir -p {{SRC_DIR}}/Library/Css/ 55 59 56 60 NODE_ENV=production {{ETC_CMD}} {{SRC_DIR}}/Css/About.css \ 57 61 --config {{SYSTEM_DIR}}/Css/Tailwind.js \