mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Now that the PFH node has been renamed this updates the pfh label. Produced via `xbgs -l -e '"pfh:ReactNative_CommonInfrastructurePlaceholde"' | xargs sed -i 's/"pfh:ReactNative_CommonInfrastructurePlaceholde"/"pfh:ReactNative_CommonInfrastructurePlaceholder"/'` Reviewed By: jkeljo Differential Revision: D35374087 fbshipit-source-id: 61590f69de5a69ec3b8a0478f6dd43409de3c70b
36 lines
1014 B
Python
36 lines
1014 B
Python
load("@fbsource//tools/build_defs/third_party:yarn_defs.bzl", "yarn_workspace")
|
|
load("@fbsource//xplat/js:JS_DEFS.bzl", "relative_path_to_js_root", "rn_library")
|
|
|
|
yarn_workspace(
|
|
name = "yarn-workspace",
|
|
srcs = glob(
|
|
[
|
|
"**/*.js",
|
|
"**/*.json",
|
|
],
|
|
exclude = [
|
|
"**/__fixtures__/**",
|
|
"**/__flowtests__/**",
|
|
"**/__mocks__/**",
|
|
"**/__tests__/**",
|
|
"**/node_modules/**",
|
|
"**/node_modules/.bin/**",
|
|
],
|
|
),
|
|
visibility = ["PUBLIC"],
|
|
)
|
|
|
|
rn_library(
|
|
name = "polyfills",
|
|
base_path = relative_path_to_js_root() + "node_modules/@react-native/polyfills/",
|
|
is_polyfill = True,
|
|
labels = [
|
|
"pfh:ReactNative_CommonInfrastructurePlaceholder",
|
|
"supermodule:xplat/default/public.react_native.core",
|
|
],
|
|
node_modules_check_enabled = False,
|
|
skip_processors = True, # Don't anticipate routes or fbicon here
|
|
visibility = ["PUBLIC"],
|
|
deps = [],
|
|
)
|