mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-10 00:21:22 +00:00
27 lines
698 B
Python
27 lines
698 B
Python
load("@raw_ts_library//:index.bzl", "raw_ts_library")
|
|
|
|
raw_ts_library(
|
|
name = "frontend_server",
|
|
srcs = [
|
|
"index.mjs",
|
|
"upstream.mjs",
|
|
],
|
|
module_name = "common/frontend_server",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"@npm//body-parser",
|
|
"@npm//connect-history-api-fallback",
|
|
"@npm//cookie-parser",
|
|
"@npm//evil-dns",
|
|
"@npm//express",
|
|
"@npm//express-openid-connect",
|
|
"@npm//hbs",
|
|
"@npm//helmet",
|
|
"@npm//http-proxy-middleware",
|
|
"@npm//webpack",
|
|
"@npm//webpack-dev-middleware",
|
|
"@npm//webpack-hot-middleware",
|
|
"@npm//webpack-mild-compile",
|
|
],
|
|
)
|