-
-
Notifications
You must be signed in to change notification settings - Fork 513
/
BUILD.bazel
44 lines (38 loc) · 1.13 KB
/
BUILD.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
load("@aspect_rules_js//js:defs.bzl", "js_test")
load("@npm//:defs.bzl", "npm_link_all_packages")
load("@aspect_rules_webpack//webpack:defs.bzl", "webpack_bundle", "webpack_devserver")
npm_link_all_packages()
exports_files(
[".swcrc"],
visibility = ["//:__subpackages__"],
)
STATIC_ASSETS = glob(["public/**"])
webpack_bundle(
name = "bundle",
srcs = ["//react-webpack/src:transpile"] + STATIC_ASSETS,
node_modules = ":node_modules",
output_dir = True,
webpack_config = ":webpack.bazel.config.js",
deps = [
":node_modules/html-webpack-plugin",
":node_modules/react",
":node_modules/react-dom",
],
)
js_test(
name = "build_smoke_test",
timeout = "short",
data = ["bundle"],
entry_point = "build_smoke_test.js",
)
webpack_devserver(
name = "dev_server",
data = ["//react-webpack/src:transpile"] + STATIC_ASSETS + [
":node_modules/html-webpack-plugin",
":node_modules/react",
":node_modules/react-dom",
],
entry_point = "//react-webpack/src:index.js",
node_modules = ":node_modules",
webpack_config = ":webpack.bazel.config.js",
)