@@ -17,17 +17,20 @@ For more information see the
17171818additional questions or comments.
1919
20- ## Commit messages
20+ ## Commit Messages
2121
2222This repository adheres to the
2323[ conventional commit format] ( https://conventionalcommits.org ) via
2424[ commitlint] ( https://github.com/conventional-changelog/commitlint/#what-is-commitlint ) .
2525Commit messages must match the pattern:
2626
2727``` sh
28- type(scope? ): subject # scope is optional; multiple scopes are supported (current delimiter options: "/", "\" and ",")
28+ type(scope? ): subject
2929```
3030
31+ Scope is optional. You can also specify multiple scopes using ` / ` or ` , ` as
32+ delimiters.
33+
3134Following this is necessary to pass CI.
3235
3336## Additional Dependencies
@@ -158,7 +161,18 @@ If you choose to use Visual Studio, remember to first set the target platform to
158161> re-run ` install-windows-test-app ` to make sure that the changes are included
159162> in the Visual Studio project.
160163
161- ### Testing Other React Native Versions
164+ ## Adding New Files
165+
166+ When adding new files, please make sure they are published (or not if it's for
167+ internal use only). To get a list of files that get published, you can run:
168+
169+ ``` sh
170+ npm pack --dry-run --verbose
171+ ```
172+
173+ If your files are missing, you can modify the ` files ` section in ` package.json ` .
174+
175+ ## Testing Specific React Native Versions
162176
163177` react-native-test-app ` supports multiple versions of React Native. Use
164178` set-react-version ` to set the version, e.g. to use 0.68:
0 commit comments