Add jquery-ui bazel build file

This commit is contained in:
Henrik Giesel 2020-12-30 11:56:20 +01:00
parent eea6bf963b
commit 84f8a2450a

29
ts/jquery-ui.bzl Normal file
View File

@ -0,0 +1,29 @@
load("//ts:copy.bzl", "copy_files")
"Rule to copy jquery-ui subset from node_modules to vendor folder."
_include = [
"jquery-ui.min.js",
]
_unwanted_prefix = "external/npm/node_modules/jquery-ui-dist/"
def _copy_jquery_ui_impl(ctx):
wanted = []
for f in ctx.attr.jquery-ui.files.to_list():
path = f.path
want = True
for substr in _include:
if substr in path:
output = path.replace(_unwanted_prefix, "")
wanted.append((f, output))
return copy_files(ctx, wanted)
copy_jquery_ui = rule(
implementation = _copy_jquery_ui_impl,
attrs = {
"jquery-ui": attr.label(default = "@npm//jquery-ui-dist:jquery-ui-dist__files"),
},
)