BUCK 621 B

1234567891011121314151617181920212223
  1. load("@fbsource//tools/build_defs/third_party:yarn_defs.bzl", "yarn_workspace")
  2. yarn_workspace(
  3. name = "yarn-workspace",
  4. srcs = glob(
  5. ["**/*.js"],
  6. exclude = [
  7. "**/__fixtures__/**",
  8. "**/__flowtests__/**",
  9. "**/__mocks__/**",
  10. "**/__server_snapshot_tests__/**",
  11. "**/__tests__/**",
  12. "**/node_modules/**",
  13. "**/node_modules/.bin/**",
  14. "**/.*",
  15. "**/.*/**",
  16. "**/.*/.*",
  17. "**/*.xcodeproj/**",
  18. "**/*.xcworkspace/**",
  19. ],
  20. ),
  21. visibility = ["PUBLIC"],
  22. )