blob: c9fb69ae83abb2cb7812ae911a869dca51fb60ed [file]
load("@aspect_rules_js//js:defs.bzl", "js_binary")
load("@aspect_rules_ts//ts:defs.bzl", "ts_project")
load("@aspect_rules_rollup//rollup:defs.bzl", "rollup")
package(default_visibility = ["//visibility:public"])
ts_project(
name = "licenses-map",
srcs = glob(["*.ts"]),
declaration = True,
tsconfig = "tsconfig.json",
deps = [
"//tools/node_tools:node_modules",
],
)
rollup(
name = "license-map-generator-bundle",
args = [
"--bundleConfigAsCjs=true",
],
config_file = "rollup.config.js",
entry_point = "license-map-generator.js",
format = "cjs",
node_modules = "//tools/node_tools:node_modules",
silent = True,
deps = [
":licenses-map",
"//tools/node_tools:node_modules/@rollup/plugin-node-resolve",
"//tools/node_tools:node_modules/rollup",
],
)
js_binary(
name = "license-map-generator-bin",
entry_point = ":license-map-generator-bundle",
)
# (TODO)dmfilippov Find a better way to fix it (another workaround or submit a bug to
# plugin's authors or to a ts_config rule author).
# The following genrule is a workaround for a bazel intellij plugin's bug.
# According to the documentation, the ts_config_rules section should be added
# to a .bazelproject file if a project uses typescript
# (https://ij.bazel.build/docs/dynamic-languages-typescript.html)
# Unfortunately, this doesn't work. It seems, that the plugin expects some output from
# the ts_config rule, but the rule doesn't produce any output.
# To workaround the issue, the tsconfig_editor genrule was added. The genrule only copies
# input file to the output file, but this is enough to make bazel plugins works.
# So, if you have any problem a typescript editor (import errors, types not found, etc...) -
# try to build this rule from the command line
# (bazel build tools/node_tools/node_modules/licenses:tsconfig_editor) and then sync bazel project
# in intellij.
genrule(
name = "tsconfig_editor",
srcs = ["tsconfig.json"],
outs = ["tsconfig_editor.json"],
cmd = "cp $< $@",
)