rules_nodejs maintainers suggest to upgrade to upcoming rules_nodejs version 2.0.0. The new version has breaking change how loading of the external repositories work. New approach makes WORKSPACE ordering easier since we won’t need rules_nodejs install_bazel_dependencies anymore. ts_setup_workspace has been a no-op since 1.0 when requirejs was vendored for ts_devserver. Therefore ts_setup_workspace is a no-op and can be removed. Bug: Issue 13090 Change-Id: If48daa15ca31627129eab7b865971124792336cc
61 lines
2.3 KiB
Python
61 lines
2.3 KiB
Python
load("@npm//@bazel/typescript:index.bzl", "ts_library")
|
|
load("//tools/node_tools/node_modules_licenses:node_modules_licenses.bzl", "node_modules_licenses")
|
|
|
|
filegroup(
|
|
name = "licenses-texts",
|
|
srcs = glob(["licenses/*.txt"]),
|
|
)
|
|
|
|
ts_library(
|
|
name = "licenses-config",
|
|
srcs = [
|
|
"licenses.ts",
|
|
],
|
|
compiler = "//tools/node_tools:tsc_wrapped-bin",
|
|
node_modules = "@tools_npm//:node_modules",
|
|
tsconfig = "tsconfig.json",
|
|
deps = [
|
|
"//tools/node_tools/node_modules_licenses:licenses-map",
|
|
"@tools_npm//@types/node",
|
|
],
|
|
)
|
|
|
|
# (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 $< $@",
|
|
)
|
|
|
|
# filegroup is enough (instead of rollup-bundle), because we are not going to run licenses.ts file
|
|
filegroup(
|
|
name = "licenses-config-js",
|
|
srcs = [":licenses-config"],
|
|
output_group = "es5_sources",
|
|
)
|
|
|
|
# Generate polygerrit-licenses.json for files in @ui_npm workspace.
|
|
# For details - see comments for node_modules_licenses rule and
|
|
# tools/node_tools/node_modules_licenses/license-map-generator.ts file
|
|
node_modules_licenses(
|
|
name = "polygerrit-licenses",
|
|
licenses_config = "licenses-config-js",
|
|
licenses_texts = [":licenses-texts"],
|
|
node_modules = "@ui_npm//:node_modules",
|
|
visibility = ["//visibility:public"],
|
|
)
|