anki/ts/graphs/BUILD.bazel

110 lines
2.0 KiB
Python
Raw Normal View History

load("@npm//@bazel/typescript:index.bzl", "ts_library")
load("//ts/svelte:svelte.bzl", "compile_svelte", "svelte_check")
load("//ts:prettier.bzl", "prettier_test")
load("//ts:eslint.bzl", "eslint_test")
load("//ts:esbuild.bzl", "esbuild")
2021-04-13 16:49:47 +02:00
load("@io_bazel_rules_sass//:defs.bzl", "sass_binary")
sass_binary(
name = "base_css",
src = "graphs-base.scss",
visibility = ["//visibility:public"],
)
svelte_files = glob(["*.svelte"])
svelte_names = [f.replace(".svelte", "") for f in svelte_files]
compile_svelte(
name = "svelte",
srcs = svelte_files,
)
ts_library(
name = "index",
srcs = ["index.ts"],
deps = [
"GraphsPage",
"lib",
"//ts/lib",
"//ts/sveltelib",
2020-12-26 15:17:30 +01:00
"@npm//svelte",
"@npm//svelte2tsx",
],
)
ts_library(
name = "lib",
srcs = glob(
["*.ts"],
exclude = ["index.ts"],
),
deps = [
"//ts/lib",
"//ts/lib:backend_proto",
"//ts/sveltelib",
2021-01-30 00:04:44 +01:00
"@npm//@types/d3",
"@npm//@types/lodash",
2021-01-30 00:04:44 +01:00
"@npm//d3",
"@npm//lodash.debounce",
"@npm//lodash.throttle",
"@npm//svelte",
],
)
esbuild(
name = "graphs",
srcs = [
"//ts:protobuf-shim.js",
],
args = [
"--global-name=anki",
"--inject:$(location //ts:protobuf-shim.js)",
2021-04-07 06:53:53 +02:00
"--resolve-extensions=.mjs,.js",
"--log-level=warning",
],
entry_point = "index.ts",
external = [
"protobufjs/light",
],
output_css = True,
visibility = ["//visibility:public"],
deps = [
"//ts/sveltelib",
"//ts/lib",
"//ts/lib:backend_proto",
":index",
2021-04-13 16:49:47 +02:00
":base_css",
] + svelte_names,
)
exports_files(["graphs.html"])
# Tests
################
prettier_test(
name = "format_check",
srcs = glob([
"*.ts",
"*.svelte",
]),
)
eslint_test(
name = "eslint",
srcs = glob(
[
"*.ts",
],
),
)
svelte_check(
name = "svelte_check",
srcs = glob([
"*.ts",
"*.svelte",
]),
)