diff mrjunejune/BUILD @ 201:6cdee35a7ba9

[MrJuneJune] notes
author MrJuneJune <me@mrjunejune.com>
date Sun, 15 Feb 2026 07:07:50 -0800
parents 90dfcef375fb
children b9b184b3303c
line wrap: on
line diff
--- a/mrjunejune/BUILD	Sat Feb 14 16:32:24 2026 -0800
+++ b/mrjunejune/BUILD	Sun Feb 15 07:07:50 2026 -0800
@@ -28,6 +28,14 @@
   dest = "src/public/highlight",
 )
 
+move_files_into_dir(
+  name = "rich_editor_js",
+  srcs = [
+    "//rich_editor:rich_editor",
+  ],
+  dest = "src/public/js",
+)
+
 filegroup(
   name = "public_files",
   srcs = glob(["src/public/*"]),
@@ -42,7 +50,7 @@
     
 filegroup(
   name = "src_files",
-  srcs = glob(["src/**"]) + [":react_pages", ":shared_js_non_public", "shared_js_file"],
+  srcs = glob(["src/**"]) + [":react_pages", ":shared_js_non_public", ":shared_js_file", ":rich_editor_js"],
   visibility = ["//mrjunejune/test:__pkg__"],
 )
 
@@ -54,7 +62,10 @@
     "//seobeo:seobeo",
     "//markdown_converter:markdown_to_html_c",
     "//s3:s3",
+    "//deita:deita",
   ],
+  copts = ["-D_GNU_SOURCE"],
+  linkopts = ["-lpthread"],
   data = [
     ":src_files",
     ":config_file",
@@ -71,7 +82,10 @@
     "//seobeo:seobeo_debug",
     "//markdown_converter:markdown_to_html_c",
     "//s3:s3",
+    "//deita:deita",
   ],
+  copts = ["-D_GNU_SOURCE"],
+  linkopts = ["-lpthread"],
   data = [
     ":src_files",
     ":config_file",