File tree Expand file tree Collapse file tree 2 files changed +38
-3
lines changed
Expand file tree Collapse file tree 2 files changed +38
-3
lines changed Original file line number Diff line number Diff line change @@ -24,12 +24,13 @@ package(default_visibility = [
2424licenses (["notice" ])
2525
2626exports_files (
27- glob (["*.md" ]),
27+ glob (["**/* .md" ]),
2828)
2929
3030filegroup (
3131 name = "docs" ,
32- data = glob (["*.md" ]),
32+ data = glob (["**/*.md" ]),
33+ visibility = ["//visibility:public" ],
3334)
3435
3536py_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)
Original file line number Diff line number Diff line change 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+ )
You can’t perform that action at this time.
0 commit comments