Mercurial
view design_system/BUILD @ 265:056790c4fb0d
add role-aware Epi assistant prompts
Add verified June knowledge, guest/member/admin Copilot profiles, profile-isolated session recovery, animated Epi greetings, and a single authoritative runtime config workflow for inference.
Co-authored-by: Copilot <[email protected]>
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Fri, 07 Aug 2026 10:50:30 -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", )