comparison gui_ze/README.md @ 192:b818a4561a3c hg-web

Added AI genreated README.md. Needed to be read.
author MrJuneJune <me@mrjunejune.com>
date Sat, 24 Jan 2026 21:52:14 -0800
parents
children
comparison
equal deleted inserted replaced
191:a06710325c30 192:b818a4561a3c
1 # gui_ze
2
3 Bazel rules for building GUI applications and web frontends.
4
5 ## Files
6
7 | File | Description |
8 |------|-------------|
9 | `gui_ze.bzl` | Starlark rules for web/GUI builds |
10 | `time_to_first_byte.sh` | TTFB measurement script |
11
12 ## Rules
13
14 Provides Bazel rules for:
15 - Bundling JavaScript/TypeScript with esbuild
16 - Building WASM modules with Emscripten
17 - Packaging web applications
18
19 ## Usage
20
21 ```starlark
22 load("//gui_ze:gui_ze.bzl", "web_bundle", "wasm_cc_binary")
23
24 web_bundle(
25 name = "app",
26 entry_point = "src/main.tsx",
27 ...
28 )
29 ```