Do not emit rules_pkg dep in distro tarball's MODULE.bazel (#214)
Since we don't include //distro in the distro package itself. Note that skylib's distro packaging follows the same logic.
diff --git a/BUILD b/BUILD
index 173fada..ad16037 100644
--- a/BUILD
+++ b/BUILD
@@ -43,7 +43,6 @@
"CHANGELOG.md",
"CONTRIBUTORS",
"LICENSE",
- "MODULE.bazel",
"maven_install.json",
"rules_jvm_external.patch",
"//src/main/java/com/google/devtools/build/stardoc/renderer:srcs",
diff --git a/MODULE.bazel b/MODULE.bazel
index d55deab..7a433d1 100644
--- a/MODULE.bazel
+++ b/MODULE.bazel
@@ -32,5 +32,7 @@
)
use_repo(maven, "stardoc_maven")
+### INTERNAL ONLY - lines after this are not included in the release packaging.
+#
# Dev-only and test-only dependencies
bazel_dep(name = "rules_pkg", version = "0.10.1", dev_dependency = True)