anki/ts/sveltelib/BUILD.bazel
Henrik Giesel 10b8a1c3cb Move async and asyncReactive to sveltelib
- sveltelib is a lib for component-agnostic svelte utils
2021-03-22 03:06:53 +01:00

33 lines
592 B
Python

load("@npm//@bazel/typescript:index.bzl", "ts_library")
load("//ts:prettier.bzl", "prettier_test")
load("//ts:eslint.bzl", "eslint_test")
# Anki Library
################
ts_library(
name = "sveltelib",
srcs = glob(["**/*.ts"]),
data = [],
module_name = "sveltelib",
tsconfig = "//:tsconfig.json",
visibility = ["//visibility:public"],
deps = [
"@npm//svelte",
"@npm//tslib",
],
)
# Tests
################
prettier_test(
name = "format_check",
srcs = glob(["*.ts"]),
)
eslint_test(
name = "eslint",
srcs = glob(["*.ts"]),
)