32 lines
720 B
Python
32 lines
720 B
Python
load("//ts:prettier.bzl", "prettier")
|
|
|
|
prettier()
|
|
|
|
# Exported files
|
|
#################
|
|
|
|
exports_files([
|
|
"tsconfig.json",
|
|
"d3_missing.d.ts",
|
|
".prettierrc",
|
|
"rollup.config.js",
|
|
".eslintrc.js",
|
|
"licenses.json",
|
|
])
|
|
|
|
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',
|
|
],
|
|
),
|
|
)
|