mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
4cbc39a431
Summary: This babel plugin will also take care of the JS TurboModule Codegen. Therefore, we should rename this into something more generic. Changelog: [General][Changed] Rename babel-plugin-inline-view-configs to react-native/babel-plugin-codegen Reviewed By: rickhanlonii, cpojer Differential Revision: D22803209 fbshipit-source-id: 416c97fea6fa0820d25bbc91033a0cbbbbbff825
24 lines
621 B
Python
24 lines
621 B
Python
load("@fbsource//tools/build_defs/third_party:yarn_defs.bzl", "yarn_workspace")
|
|
|
|
yarn_workspace(
|
|
name = "yarn-workspace",
|
|
srcs = glob(
|
|
["**/*.js"],
|
|
exclude = [
|
|
"**/__fixtures__/**",
|
|
"**/__flowtests__/**",
|
|
"**/__mocks__/**",
|
|
"**/__server_snapshot_tests__/**",
|
|
"**/__tests__/**",
|
|
"**/node_modules/**",
|
|
"**/node_modules/.bin/**",
|
|
"**/.*",
|
|
"**/.*/**",
|
|
"**/.*/.*",
|
|
"**/*.xcodeproj/**",
|
|
"**/*.xcworkspace/**",
|
|
],
|
|
),
|
|
visibility = ["PUBLIC"],
|
|
)
|