mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 18:31:54 +00:00
Webpack bundles compile but need further testing. Jest + mocha tests compile but are marked as `manual` until further work is done to get them passing. The four jest tests are green and enabled now, though. ## Test plan `bazel build //client/...` and `bazel test //client/...`
16 lines
406 B
Python
16 lines
406 B
Python
load("@aspect_rules_webpack//webpack:defs.bzl", _webpack_bundle = "webpack_bundle", _webpack_devserver = "webpack_devserver")
|
|
|
|
def webpack_bundle(name, **kwargs):
|
|
_webpack_bundle(
|
|
name = name,
|
|
webpack = "//dev:webpack",
|
|
**kwargs
|
|
)
|
|
|
|
def webpack_devserver(name, **kwargs):
|
|
_webpack_devserver(
|
|
name = name,
|
|
webpack = "//dev:webpack",
|
|
**kwargs
|
|
)
|