478b3a53f1
* Move some AddCards specific code to NoteCreator.svelte * Add new strings for Toggling the Visual / HTML editor * Set LabelContainer vertical-align to text-top - Makes them look more centered * Remove appendInParentheses helper * Make all ts/*.html files include only module.js and module.css * Move any JS from .html to index files * Remove .html files from ts modules * Remove Python with Starlark implemenation * Remove reference to non-existing file * Remove deck-option.html as well * fix change-notetype screen (dae)
75 lines
1.3 KiB
Python
75 lines
1.3 KiB
Python
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")
|
|
load("//ts:generate_page.bzl", "generate_page")
|
|
load("//ts:compile_sass.bzl", "compile_sass")
|
|
load("//ts:typescript.bzl", "typescript")
|
|
|
|
generate_page(page = "graphs")
|
|
|
|
compile_sass(
|
|
srcs = ["graphs-base.scss"],
|
|
group = "base_css",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//sass:base_lib",
|
|
"//sass:scrollbar_lib",
|
|
],
|
|
)
|
|
|
|
_ts_deps = [
|
|
"//ts/lib",
|
|
"//ts/sveltelib",
|
|
"@npm//@fluent",
|
|
"@npm//@types/d3",
|
|
"@npm//@types/lodash",
|
|
"@npm//d3",
|
|
"@npm//lodash-es",
|
|
"@npm//svelte",
|
|
]
|
|
|
|
compile_svelte(
|
|
deps = _ts_deps,
|
|
)
|
|
|
|
typescript(
|
|
name = "index",
|
|
deps = _ts_deps + [
|
|
":svelte",
|
|
],
|
|
)
|
|
|
|
esbuild(
|
|
name = "graphs",
|
|
args = {
|
|
"globalName": "anki",
|
|
},
|
|
entry_point = "index.ts",
|
|
output_css = "graphs.css",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
":base_css",
|
|
":index",
|
|
":svelte",
|
|
],
|
|
)
|
|
|
|
# Tests
|
|
################
|
|
|
|
prettier_test()
|
|
|
|
eslint_test()
|
|
|
|
svelte_check(
|
|
name = "svelte_check",
|
|
srcs = glob([
|
|
"*.ts",
|
|
"*.svelte",
|
|
]) + [
|
|
"//ts/lib",
|
|
"//ts/sveltelib",
|
|
],
|
|
)
|