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

Configure Feed

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

Add highlighting css classes to the whitelist

+8 -4
+8 -4
Justfile
··· 48 48 49 49 50 50 @css-prod: 51 - echo "> Optimizing CSS" 51 + echo "> Optimising CSS" 52 52 53 53 NODE_ENV=production {{ETC_CMD}} {{SRC_DIR}}/Css/About.css \ 54 54 --config {{SYSTEM_DIR}}/Css/Tailwind.js \ ··· 57 57 --post-plugin-before postcss-import \ 58 58 --post-plugin-after postcss-custom-properties \ 59 59 \ 60 - --purge-content {{BUILD_DIR}}/about/**/*.html 60 + --purge-content {{BUILD_DIR}}/about/**/*.html \ 61 + --purge-whitelist hljs-string \ 62 + --purge-whitelist hljs-comment \ 63 + --purge-whitelist hljs-meta \ 64 + --purge-whitelist bash 61 65 62 66 NODE_ENV=production {{ETC_CMD}} {{SRC_DIR}}/Css/Application.css \ 63 67 --config {{SYSTEM_DIR}}/Css/Tailwind.js \ ··· 81 85 82 86 83 87 @elm-prod: 84 - echo "> Compiling Elm application (optimized)" 88 + echo "> Compiling Elm application (optimised)" 85 89 elm make {{SRC_DIR}}/Applications/Brain.elm --output {{BUILD_DIR}}/brain.elm.js --optimize 86 90 elm make {{SRC_DIR}}/Applications/UI.elm --output {{BUILD_DIR}}/ui.elm.js --optimize 87 91 ··· 132 136 133 137 134 138 @js-prod: vendor-js 135 - echo "> Compiling Javascript code (optimized)" 139 + echo "> Compiling Javascript code (optimised)" 136 140 137 141 # ... 138 142 cp {{NPM_DIR}}/subworkers/subworkers.js {{BUILD_DIR}}/subworkers.js