mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
a77f2c40d1
Summary: Changelog: [Internal] Reviewed By: GijsWeterings Differential Revision: D22625944 fbshipit-source-id: 1d97550c92115eb637da57e8f38c28e8139f3a8b
21 lines
485 B
Python
21 lines
485 B
Python
load("@fbsource//tools/build_defs/third_party:yarn_defs.bzl", "yarn_workspace")
|
|
|
|
yarn_workspace(
|
|
name = "yarn-workspace",
|
|
srcs = glob(
|
|
[
|
|
"**/*.js",
|
|
"**/*.json",
|
|
],
|
|
exclude = [
|
|
"**/__fixtures__/**",
|
|
"**/__flowtests__/**",
|
|
"**/__mocks__/**",
|
|
"**/__tests__/**",
|
|
"**/node_modules/**",
|
|
"**/node_modules/.bin/**",
|
|
],
|
|
),
|
|
visibility = ["PUBLIC"],
|
|
)
|