forked from necolas/react-native-web
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from Expensify/Rory-UpdateTo18.7
Update RNW to 18.7 - This was merged without signed commits as contributors upstream do not use signing.
- Loading branch information
Showing
509 changed files
with
34,901 additions
and
17,566 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"packages": ["packages/react-native-web", "packages/babel-plugin-react-native-web"], | ||
"buildCommand": "build", | ||
"sandboxes": ["/packages/react-native-web-examples/"], | ||
"node": "16" | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: Bug report | ||
description: File a bug report | ||
labels: ["bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thank you for reporting an issue! Create a test case for your issue by forking this template https://codesandbox.io/s/6lx6ql1w5r | ||
- type: checkboxes | ||
attributes: | ||
label: Is there an existing issue for this? | ||
description: Please search to see if an issue already exists for the bug you encountered. | ||
options: | ||
- label: I have searched the existing issues | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Describe the issue | ||
description: Please provide a concise description of what you're experiencing. Providing screenshots is also helpful. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Expected behavior | ||
description: Please provide a concise description of what you expected to happen. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Steps to reproduce | ||
description: Please describe the precise steps needed to reproduce the behavior. | ||
placeholder: | | ||
Mention package versions and environment (browser, etc)... | ||
1. ... | ||
2. ... | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Test case | ||
description: Please provide a link to a reduced test case that reproduces the issue. | ||
placeholder: "https://codesandbox.io/s/6lx6ql1w5r" | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Additional comments | ||
description: You're welcome to provide additional context and proposed solutions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
blank_issues_enabled: false |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Feature request | ||
description: If you have a suggestion… | ||
labels: ["enhancement"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thank you for suggesting a feature! | ||
- type: checkboxes | ||
attributes: | ||
label: Is there an existing request? | ||
description: Please search open and closed issues to see if this request has already been made. | ||
options: | ||
- label: I have searched for this request | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Describe the feature request | ||
description: Please provide a concise description of the request, potential solutions, and addtional context. | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: react@next integration | ||
|
||
on: | ||
schedule: | ||
# Run every Monday at 12:00 (see https://crontab.guru) | ||
- cron: '0 12 * * 1' | ||
|
||
jobs: | ||
react-next: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: '16.x' | ||
- run: npm install | ||
# Update react-native-web to use react@next | ||
- run: npm install react@next react-dom@next -w react-native-web | ||
# Run the unit tests | ||
- run: npm run unit |
Oops, something went wrong.