mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-24 11:29:12 +00:00
28 lines
629 B
Text
28 lines
629 B
Text
load("//:hack/react.bzl", "react_library")
|
|
load("//:hack/jest.bzl", "jest_test")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
react_library(
|
|
name = "role",
|
|
deps = [
|
|
"chroma-js",
|
|
"react",
|
|
"react-icons",
|
|
"styled-components",
|
|
"//src/design-system/atoms/colors",
|
|
"//src/design-system/atoms/timings",
|
|
"//src/design-system/shared-types",
|
|
"//src/rpc/shared",
|
|
"@types/chroma-js",
|
|
"@types/react",
|
|
"@types/styled-components",
|
|
],
|
|
)
|
|
|
|
jest_test(
|
|
src = ":role",
|
|
deps = [
|
|
"//src/design-system/shared-types",
|
|
],
|
|
)
|