From de03162038aaee156eedc3482dc285128ed9bfdb Mon Sep 17 00:00:00 2001 From: Alex Hunt Date: Wed, 23 Aug 2023 07:53:24 -0700 Subject: [PATCH] Add contributing note to dev server packages (#39127) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/39127 Will be referenced in https://github.com/react-native-community/cli/pull/2055. Changelog: [Internal] bypass-github-export-checks Reviewed By: motiz88 Differential Revision: D48603224 fbshipit-source-id: ac98565cf2f739e02f3d552522fa7ab39ebb9771 --- packages/community-cli-plugin/README.md | 4 ++++ packages/dev-middleware/README.md | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/packages/community-cli-plugin/README.md b/packages/community-cli-plugin/README.md index 423512ee9ceb32..3cf597929eb1e9 100644 --- a/packages/community-cli-plugin/README.md +++ b/packages/community-cli-plugin/README.md @@ -85,3 +85,7 @@ Accepts all options supported by [`bundle`](#bundle) and the following: | Option | Description | | - | - | | `--indexed-ram-bundle` | Force the "Indexed RAM" bundle file format, even when building for Android. | + +## Contributing + +Changes to this package can be made locally and tested against the `rn-tester` app, per the [Contributing guide](https://reactnative.dev/contributing/overview#contributing-code). During development, this package is automatically run from source with no build step. diff --git a/packages/dev-middleware/README.md b/packages/dev-middleware/README.md index 68cf4324ca1b07..0d25e4c64e038c 100644 --- a/packages/dev-middleware/README.md +++ b/packages/dev-middleware/README.md @@ -80,3 +80,7 @@ WebSocket handler for registering device connections. #### `/inspector/debug` WebSocket handler that proxies CDP messages to/from the corresponding device. + +## Contributing + +Changes to this package can be made locally and tested against the `rn-tester` app, per the [Contributing guide](https://reactnative.dev/contributing/overview#contributing-code). During development, this package is automatically run from source with no build step.