5 lines
222 B
Bash
5 lines
222 B
Bash
# Compile each .gleam file in src/ as a separate component module.
|
|
ls src | \
|
|
grep '_component.gleam' | \
|
|
xargs -I {} basename {} .gleam | \
|
|
xargs -I {} gleam run -m lustre/dev build component {} --outdir=../js_dist
|