a small incremental UI library for the web
javascript web ui
1
fork

Configure Feed

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

Bundle with esbuild

garrison 986d9925 b627c716

+10 -2
+1
assets/js/todo.tsx
··· 1 + console.log('Noir!');
+5 -1
config/config.exs
··· 2 2 3 3 if config_env() == :dev do 4 4 config :esbuild, 5 - version: "0.27.2" 5 + version: "0.27.2", 6 + default: [ 7 + args: ~w(js/todo.tsx --watch --bundle --target=es2016 --outdir=../priv/static/assets), 8 + cd: Path.expand("../assets", __DIR__), 9 + ] 6 10 end
+4 -1
mix.exs
··· 30 30 31 31 defp aliases do 32 32 [ 33 - ds: "run --no-halt", 33 + ds: [ 34 + "run --no-halt", 35 + "esbuild default", 36 + ], 34 37 ] 35 38 end 36 39 end