Makes package public by default

When creating a skylark_library A anywhere downstream, if a bzl file in A loads() any of the bzl libraries in this package, then the bzl files in this package will have to be in deps as a skylark_library. The current public filegroup cannot be used as a dependency of skylark_libraries.
This commit is contained in:
oquenchil 2018-06-27 10:22:33 +02:00 committed by GitHub
parent 3fea8cb680
commit 6301f974f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
licenses(["notice"])
package(default_visibility = ["//:__pkg__"])
package(default_visibility = ["//visibility:public"])
load("//:skylark_library.bzl", "skylark_library")