Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 11 additions & 7 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
<!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes.
Please follow the template so that the reviewers can easily understand what the code changes affect -->
<!-- Thanks for submitting a pull request! πŸ™Œ We really appreciate your time and effort in contributing to this project.
Please follow the template below to help reviewers understand your changes clearly. -->

# πŸ“ Why & how
<!-- Does this PR add a feature? Address a bug? Add a new library? Document your changes here! -->

<!-- Does this PR add a feature? Address a bug? Add a new library? Document your changes here! -->

# βœ… Checklist
<!-- Check completed item, when applicable, via [X], remove unneeded tasks from the list -->

<!-- If you added a new library or updated the existing one -->
<!-- Mark completed items with [x]. Remove tasks that don't apply. -->

<!-- If you added a new library or updated the existing one. -->
- [ ] Added library to **`react-native-libraries.json`**
- [ ] Updated library in **`react-native-libraries.json`**

<!-- If you added a feature or fixed a bug -->
- [ ] Documented in this PR how to use the feature or replicate the bug.
- [ ] Documented in this PR how you fixed an issue or created the feature.
- [ ] Documented how you found or replicated the issue.
- [ ] Explained how you fixed the issue or built the feature.
- [ ] Described how to use or verify the change.

<!-- Thanks again for helping improve the project! πŸ™ -->
3 changes: 3 additions & 0 deletions .github/workflows/code-deploy-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ on:
push:
branches: [main]
paths-ignore:
- .vscode
- '**.md'
- react-native-libraries.json
- react-native-libraries.schema.json
schedule:
# Run every 3 hours - https://crontab.guru/#0_*/3_*_*_*
- cron: '0 */3 * * *'
Expand Down
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"json.schemas": [
{
"fileMatch": ["react-native-libraries.json"],
"url": "./react-native-libraries.schema.json"
}
]
}
File renamed without changes.
4 changes: 2 additions & 2 deletions react-native-libraries.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
"dev": {
"$id": "#/items/properties/dev",
"type": "boolean",
"title": "Package is a Development Tool (should be installed as 'devDependency' or used via `npx/bunx`)",
"title": "Package is a Development Tool (should be installed as `devDependency` or used via `npx/bunx`)",
"default": false
},
"template": {
Expand Down Expand Up @@ -190,7 +190,7 @@
"boolean",
"string"
],
"title": "Package has Expo config plugin",
"title": "Package includes Expo config plugin or confing plugin is available via separate package. Can be a boolean, or URL pointing to GitHub repository of config plugin package.",
"default": false,
"examples": [
true,
Expand Down