diff mrjunejune/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 fb9bcd3145cb
line wrap: on
line diff
--- a/mrjunejune/BUILD	Thu Oct 02 14:41:06 2025 -0700
+++ b/mrjunejune/BUILD	Fri Oct 03 06:50:33 2025 -0700
@@ -1,11 +1,11 @@
 load("@rules_cc//cc:cc_binary.bzl", "cc_binary")
 load("@rules_cc//cc:cc_library.bzl", "cc_library")
-load("//gui_ze:gui_ze.bzl", "move_files_into_dir_precompile")
+load("//gui_ze:gui_ze.bzl", "move_files_into_dir", "bundle")
 
 move_files_into_dir(
   name = "compiled_ts",
-  src = [
-    "//playground:playground_tsx",
+  srcs = [
+    "//playground:hello",
   ],
   dest = "pages",
 )
@@ -21,3 +21,8 @@
   deps = ["//seobeo:seobeo"],
   data = [":pages_files"],
 )
+
+bundle(
+  name = "mrjunejune_server_bundle",
+  binary = ":mrjunejune_server",
+)