2020-11-01 05:26:58 +01:00
|
|
|
load("@npm//@bazel/typescript:index.bzl", "ts_library")
|
|
|
|
load("//ts:prettier.bzl", "prettier_test")
|
|
|
|
|
|
|
|
ts_library(
|
|
|
|
name = "pycmd",
|
|
|
|
srcs = ["pycmd.d.ts"],
|
|
|
|
)
|
|
|
|
|
|
|
|
ts_library(
|
|
|
|
name = "aqt",
|
|
|
|
srcs = glob(
|
|
|
|
["*.ts"],
|
|
|
|
exclude = ["*.d.ts"],
|
|
|
|
),
|
|
|
|
tsconfig = "tsconfig.json",
|
|
|
|
deps = [
|
|
|
|
"pycmd",
|
|
|
|
"@npm//@types/jquery",
|
|
|
|
"@npm//@types/jqueryui",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
filegroup(
|
|
|
|
name = "aqt_es5",
|
|
|
|
srcs = ["aqt"],
|
|
|
|
output_group = "es5_sources",
|
|
|
|
)
|
|
|
|
|
|
|
|
filegroup(
|
|
|
|
name = "js",
|
|
|
|
srcs = [
|
|
|
|
"aqt_es5",
|
2020-11-15 11:22:28 +01:00
|
|
|
"mathjax.js",
|
|
|
|
"//qt/aqt/data/web/js/vendor",
|
2020-11-01 05:26:58 +01:00
|
|
|
],
|
|
|
|
visibility = ["//qt:__subpackages__"],
|
|
|
|
)
|
|
|
|
|
|
|
|
prettier_test(
|
2020-11-12 11:11:40 +01:00
|
|
|
name = "format_check",
|
2020-12-21 07:09:23 +01:00
|
|
|
srcs = glob(["*.ts", "*.js"]),
|
2020-11-01 05:26:58 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
# source files need fixing first
|
|
|
|
# eslint_test(
|
|
|
|
# name = "eslint",
|
|
|
|
# srcs = glob(["*.ts"]),
|
|
|
|
# )
|
2020-11-30 06:15:37 +01:00
|
|
|
|
|
|
|
exports_files(["mathjax.js"])
|