view playground/BUILD @ 118:249881ceff7b

[PostDog] Updated some core logic. Will create a bookmark for postdog until the launch as this is annoying to deal with.
author June Park <parkjune1995@gmail.com>
date Wed, 07 Jan 2026 13:24:38 -0800
parents 75de5903355c
children
line wrap: on
line source

load("@rules_cc//cc:cc_binary.bzl", "cc_binary")
load("//gui_ze:gui_ze.bzl", "bun_build")

cc_binary(
  name = "main",
  srcs = ["main.c"],
)

filegroup(
  name = "all_ts_files",
  srcs = glob([
      "**/*.ts",
      "**/*.tsx",
      "**/*.js",
      "**/*.jsx",
  ], allow_empty=True)
)

bun_build(
  name = "hello",
  src = "main.ts",
  src_folder = "playground",
  data = [
    "//third_party/bun:bun_files",
    ":all_ts_files",
  ],
  visibility = ["//visibility:public"],
)