mirror of
https://github.com/github/codeql.git
synced 2025-12-16 08:43:11 +01:00
16 lines
336 B
Python
16 lines
336 B
Python
load("//misc/bazel:pkg.bzl", "codeql_pkg_files")
|
|
|
|
codeql_pkg_files(
|
|
name = "resources",
|
|
srcs = glob(
|
|
["**/*"],
|
|
exclude = [
|
|
"tools/*.sh",
|
|
"BUILD.bazel",
|
|
],
|
|
) + ["//:LICENSE"],
|
|
exes = glob(["tools/*.sh"]),
|
|
strip_prefix = "",
|
|
visibility = ["//javascript:__pkg__"],
|
|
)
|