We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad09947 commit d5e263eCopy full SHA for d5e263e
3 files changed
.gitignore
@@ -29,4 +29,6 @@ ui/dist/
29
ui/node_modules/
30
31
# Embedded UI assets (built from ui/)
32
-pkg/github/ui_dist/
+pkg/github/ui_dist/*
33
+!pkg/github/ui_dist/.gitkeep
34
+!pkg/github/ui_dist/.placeholder.html
pkg/github/ui_dist/.gitkeep
@@ -0,0 +1,3 @@
1
+# This directory contains built UI assets generated by script/build-ui
2
+# The .gitkeep ensures the directory exists for the Go embed directive.
3
+# Run script/build-ui to generate the actual HTML files.
pkg/github/ui_dist/.placeholder.html
@@ -0,0 +1,4 @@
+<!-- Placeholder file ensuring the Go embed directive works -->
+<!-- This file is replaced when running: script/build-ui -->
+<!DOCTYPE html>
4
+<html><body>Run script/build-ui to generate UI assets</body></html>
0 commit comments