mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 17:31:43 +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/...`
17 lines
387 B
Python
17 lines
387 B
Python
load("@aspect_rules_js//js:defs.bzl", "js_library")
|
|
|
|
# Exclude integration-test/ ts compilation
|
|
# gazelle:exclude .
|
|
|
|
js_library(
|
|
name = "graphql_operations_files",
|
|
# Keep in sync with glob in client/shared/dev/generateGraphQlOperations.js
|
|
srcs = glob(
|
|
[
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
],
|
|
),
|
|
visibility = ["//client/shared:__pkg__"],
|
|
)
|