Skip to content

Commit 1871dd8

Browse files
faizan-mcopybara-github
authored andcommitted
docs targets
PiperOrigin-RevId: 873124448 Change-Id: I19ae7cefdaeec71a8909ed71d54f7d8e8461f35e
1 parent a589158 commit 1871dd8

File tree

2 files changed

+38
-3
lines changed

2 files changed

+38
-3
lines changed

docs/BUILD

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,13 @@ package(default_visibility = [
2424
licenses(["notice"])
2525

2626
exports_files(
27-
glob(["*.md"]),
27+
glob(["**/*.md"]),
2828
)
2929

3030
filegroup(
3131
name = "docs",
32-
data = glob(["*.md"]),
32+
data = glob(["**/*.md"]),
33+
visibility = ["//visibility:public"],
3334
)
3435

3536
py_test(
@@ -46,6 +47,5 @@ py_test(
4647
"//py/koladata:kd_ext", # buildcleaner: keep
4748
requirement("numpy"), # buildcleaner: keep
4849
"@com_google_absl_py//absl/testing:absltest",
49-
"@rules_python//python/runfiles",
5050
],
5151
)

koladata/_agent/BUILD

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Copyright 2025 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
package(default_visibility = [
16+
"//koladata:internal",
17+
])
18+
19+
licenses(["notice"])
20+
21+
exports_files(
22+
glob(
23+
["**/*.md"],
24+
allow_empty = True,
25+
),
26+
)
27+
28+
filegroup(
29+
name = "docs",
30+
data = glob(
31+
["**/*.md"],
32+
allow_empty = True,
33+
),
34+
visibility = ["//visibility:public"],
35+
)

0 commit comments

Comments
 (0)