mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
52d37aa403
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/35064 Original commit changeset: 0fb0db845c04 Original Phabricator Diff: D40610875 (https://github.com/facebook/react-native/commit/d941940b4ce7ed9030be4f72980fb45d9b62365d) Open source is using BUCK 1 which does not seem to have the `oncall` directive. Backing it out because it is breaking the external CI. ## Changelog [internal] Reviewed By: cortinico Differential Revision: D40635873 fbshipit-source-id: 79ebd4db0972520fcca6ccb8c1725657a8ef7949
31 lines
713 B
Python
31 lines
713 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 = "assets",
|
|
labels = [
|
|
"pfh:ReactNative_CommonInfrastructurePlaceholder",
|
|
],
|
|
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"],
|
|
)
|