Mercurial
view design_system/BUILD @ 262:0f45474c1b1a
Add cyberpunk JRPG blog browser
Show the latest posts in the JRPG preview and render the full blog archive and sanitized post details in the Inspect modal.
Co-authored-by: Copilot <[email protected]>
| author | MrJuneJune <mrjunejune@users.noreply.github.com> |
|---|---|
| date | Thu, 06 Aug 2026 04:08:45 -0700 |
| parents | 60a876c4587a |
| children |
line wrap: on
line source
load("@aspect_rules_js//js:defs.bzl", "js_library") load("@rules_cc//cc:cc_binary.bzl", "cc_binary") load("//gui_ze:gui_ze.bzl", "bundle") filegroup( name = "styles", srcs = glob(["src/styles/*.css"]), visibility = ["//visibility:public"], ) js_library( name = "components", srcs = glob(["src/components/*.js"]), visibility = ["//visibility:public"], ) filegroup( name = "web_assets", srcs = [ ":components", ":styles", ], visibility = ["//visibility:public"], ) filegroup( name = "catalog_assets", srcs = glob(["src/**"]), ) filegroup( name = "policy_sources", srcs = glob([ "*.md", "src/**", "wiki/**/*.md", ]) + ["main.c"], visibility = ["//design_system/test:__pkg__"], ) cc_binary( name = "design_system_server", srcs = ["main.c"], data = [":catalog_assets"], deps = ["//seobeo:seobeo"], visibility = ["//design_system:__subpackages__"], ) alias( name = "dev", actual = ":design_system_server", ) bundle( name = "design_system_server_bundle", binary = ":design_system_server", )