diff playground/BUILD @ 15:2b9e75756825

[GuiZe] Updated to handle bundling and created a shee l script for pushing.
author June Park <parkjune1995@gmail.com>
date Fri, 03 Oct 2025 06:50:33 -0700
parents de54585a40f1
children fa2b8af609d9
line wrap: on
line diff
--- a/playground/BUILD	Thu Oct 02 14:41:06 2025 -0700
+++ b/playground/BUILD	Fri Oct 03 06:50:33 2025 -0700
@@ -1,5 +1,5 @@
 load("@rules_cc//cc:cc_binary.bzl", "cc_binary")
-load("//gui_ze:gui_ze.bzl", "bun_build", "move_to_directory")
+load("//gui_ze:gui_ze.bzl", "bun_build")
 
 alias(
   name = "playground",
@@ -13,13 +13,6 @@
   srcs = ["main.c"],
 )
 
-# TODO: Testing out if I can create a symlink for this.
-move_to_directory(
-  name = "node_modules",
-  data = ["//third_party/bun:node_modules"],
-  dest = "",
-)
-
 filegroup(
   name = "all_ts_files",
   srcs = glob([
@@ -31,7 +24,7 @@
 )
 
 bun_build(
-  name = "playground_tsx",
+  name = "hello",
   src = "main.ts",
   data = ["//third_party/bun:node_modules", ":all_ts_files"],
   visibility = ["//visibility:public"],