mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Changelog: [Internal] Reviewed By: motiz88 Differential Revision: D37717611 fbshipit-source-id: 77ddfb43bb8e9fef4306b6e701d34c4964549730
32 lines
784 B
Python
32 lines
784 B
Python
load("@fbsource//tools/build_defs/third_party:yarn_defs.bzl", "yarn_workspace")
|
|
load("@fbsource//xplat/js:JS_DEFS.bzl", "rn_library")
|
|
|
|
rn_library(
|
|
name = "normalize-color",
|
|
labels = [
|
|
"pfh:ReactNative_CommonInfrastructurePlaceholder",
|
|
"supermodule:xplat/default/public.react_native.core",
|
|
],
|
|
skip_processors = True,
|
|
visibility = ["PUBLIC"],
|
|
)
|
|
|
|
yarn_workspace(
|
|
name = "yarn-workspace",
|
|
srcs = glob(
|
|
[
|
|
"**/*.js",
|
|
"**/*.json",
|
|
],
|
|
exclude = [
|
|
"**/__fixtures__/**",
|
|
"**/__flowtests__/**",
|
|
"**/__mocks__/**",
|
|
"**/__tests__/**",
|
|
"**/node_modules/**",
|
|
"**/node_modules/.bin/**",
|
|
],
|
|
),
|
|
visibility = ["PUBLIC"],
|
|
)
|