2020-11-12 11:49:00 +01:00
|
|
|
load("//ts:prettier.bzl", "prettier")
|
|
|
|
|
|
|
|
prettier()
|
|
|
|
|
2020-11-01 05:26:58 +01:00
|
|
|
# Exported files
|
|
|
|
#################
|
|
|
|
|
|
|
|
exports_files([
|
|
|
|
"tsconfig.json",
|
|
|
|
"d3_missing.d.ts",
|
|
|
|
".prettierrc",
|
|
|
|
"rollup.config.js",
|
|
|
|
".eslintrc.js",
|
2020-11-12 10:54:13 +01:00
|
|
|
"licenses.json",
|
2020-11-01 05:26:58 +01:00
|
|
|
])
|
2020-11-06 18:51:41 +01:00
|
|
|
|
|
|
|
filegroup(
|
|
|
|
name = "mathjax",
|
|
|
|
srcs = glob(
|
|
|
|
include = glob([
|
|
|
|
'node_modules/mathjax/es5/tex-chtml.js',
|
|
|
|
'node_modules/mathjax/es5/input/tex/extensions/**/*',
|
|
|
|
'node_modules/mathjax/es5/output/chtml/fonts/woff-v2/**/*',
|
|
|
|
'node_modules/mathjax/es5/a11y/**/*',
|
|
|
|
'node_modules/mathjax/es5/sre/**/*',
|
|
|
|
]),
|
|
|
|
exclude = [
|
|
|
|
'node_modules/mathjax/es5/sre/mathmaps/mathmaps_ie.js',
|
|
|
|
],
|
|
|
|
),
|
|
|
|
)
|