My personal website, in gleam+lustre!
0
fork

Configure Feed

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

May do a lil experiment with this later.


Signed-off-by: MLC Bloeiman <mar@strawmelonjuice.com>

+9
+4
Justfile
··· 18 18 gleam run -m lustre/dev build --minify 19 19 bun x terser --compress --mangle -- dist/homepage.js > dist/homepage.js.tmp 20 20 mv dist/homepage.js.tmp dist/homepage.js 21 + echo 'import { main } from "./dev/javascript/homepage/homepage/chilp_only.mjs";main()' > ./build/chilp_only.mjs 22 + bun build ./build/chilp_only.mjs --target=browser --outfile=dist/chilp-only.js 23 + bun x terser --compress --mangle -- dist/chilp-only.js > dist/chilp-only.js.tmp 24 + mv dist/chilp-only.js.tmp dist/chilp-only.js 21 25 just prepare -- --prod --prepopulate 22 26 23 27 # Runs two watchers and allows you to always get a proper preview before pushing!
+5
src/homepage/chilp_only.gleam
··· 1 + import chilp/widget 2 + 3 + pub fn main() { 4 + widget.register() 5 + }