Fix to 1.0.1 - add missing .bzl files (#201)

This commit is contained in:
aiuto 2019-10-08 15:05:48 -04:00 committed by GitHub
parent 376680d276
commit 47c6eb15c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 21 additions and 2 deletions

2
BUILD
View File

@ -61,5 +61,7 @@ filegroup(
"CONTRIBUTORS",
"//lib:distribution",
"//rules:distribution",
"//rules/private:distribution",
"//toolchains/unittest:distribution",
] + glob(["*.bzl"]),
)

View File

@ -63,6 +63,5 @@ filegroup(
srcs = glob(["*"]),
visibility = [
"//:__pkg__",
"//distribution:__pkg__",
],
)

View File

@ -18,3 +18,12 @@ bzl_library(
name = "maprule_util",
srcs = ["maprule_util.bzl"],
)
# The files needed for distribution
filegroup(
name = "distribution",
srcs = glob(["*"]),
visibility = [
"//:__subpackages__",
],
)

View File

@ -56,3 +56,12 @@ filegroup(
],
visibility = ["//:__subpackages__"],
)
# The files needed for distribution
filegroup(
name = "distribution",
srcs = ["BUILD"],
visibility = [
"//:__pkg__",
],
)

View File

@ -13,4 +13,4 @@
# limitations under the License.
"""The version of bazel-skylib."""
version = "1.0.0"
version = "1.0.1"