forked from facebook/react-native
-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into keyDownEvents
- Loading branch information
Showing
22 changed files
with
246 additions
and
245 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
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 |
---|---|---|
|
@@ -13,6 +13,22 @@ jobs: | |
|
||
- template: /.ado/templates/apple-tools-setup.yml@self | ||
|
||
- task: CmdLine@2 | ||
displayName: yarn install react-native-macos-init | ||
inputs: | ||
script: | | ||
set -eox pipefail | ||
cd packages/react-native-macos-init | ||
yarn install | ||
- task: CmdLine@2 | ||
displayName: Build react-native-macos-init | ||
inputs: | ||
script: | | ||
set -eox pipefail | ||
cd packages/react-native-macos-init | ||
yarn build | ||
- template: /.ado/templates/verdaccio-init.yml@self | ||
|
||
- template: /.ado/templates/verdaccio-publish.yml@self | ||
|
@@ -21,42 +37,56 @@ jobs: | |
- task: CmdLine@2 | ||
displayName: yarn install (local react-native-macos) | ||
inputs: | ||
script: yarn install --immutable | ||
script: | | ||
set -eox pipefail | ||
yarn install --immutable | ||
- task: CmdLine@2 | ||
displayName: yarn install (local react-native-macos-init) | ||
inputs: | ||
script: | | ||
set -eox pipefail | ||
cd packages/react-native-macos-init | ||
yarn install --immutable | ||
- task: CmdLine@2 | ||
displayName: yarn build (local react-native-macos-init) | ||
inputs: | ||
script: | | ||
set -eox pipefail | ||
cd packages/react-native-macos-init | ||
yarn build | ||
- task: CmdLine@2 | ||
displayName: Init new project | ||
inputs: | ||
script: npx --yes [email protected] init testcli --template [email protected] --skip-install | ||
script: | | ||
set -eox pipefail | ||
npx --yes @react-native-community/cli init testcli --version 0.75 --skip-install | ||
workingDirectory: $(Agent.BuildDirectory) | ||
|
||
- task: CmdLine@2 | ||
displayName: yarn install (local react-native-macos-init) | ||
displayName: yarn install (testcli) | ||
inputs: | ||
script: yarn install --immutable | ||
script: | | ||
set -eox pipefail | ||
yarn install --mode=update-lockfile | ||
# `update-lockfile` skips the linking step, so we need to run `yarn install` again | ||
yarn install | ||
workingDirectory: $(Agent.BuildDirectory)/testcli | ||
|
||
- task: CmdLine@2 | ||
displayName: Apply macos template | ||
inputs: | ||
script: npx react-native-macos-init --version latest --overwrite --prerelease | ||
script: | | ||
set -eox pipefail | ||
npx react-native-macos-init --version latest --overwrite --prerelease | ||
workingDirectory: $(Agent.BuildDirectory)/testcli | ||
|
||
- task: CmdLine@2 | ||
displayName: Run macos [test] | ||
inputs: | ||
script: npx react-native run-macos | ||
script: | | ||
set -eox pipefail | ||
npx react-native run-macos | ||
workingDirectory: $(Agent.BuildDirectory)/testcli |
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 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 |
---|---|---|
@@ -1,6 +1,21 @@ | ||
{ | ||
"name": "react-native-macos-init", | ||
"entries": [ | ||
{ | ||
"date": "Tue, 15 Oct 2024 20:02:42 GMT", | ||
"version": "2.1.3", | ||
"tag": "react-native-macos-init_v2.1.3", | ||
"comments": { | ||
"patch": [ | ||
{ | ||
"author": "[email protected]", | ||
"package": "react-native-macos-init", | ||
"commit": "b86ac5239832d7d72e22cb84b1878ce2f73138fe", | ||
"comment": "fix: Properly import `npm-registry-fetch` in `react-native-macos-init`" | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"date": "Mon, 18 May 2020 23:31:12 GMT", | ||
"tag": "react-native-macos-init_v2.1.0", | ||
|
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 |
---|---|---|
@@ -1,9 +1,17 @@ | ||
# Change Log - react-native-macos-init | ||
|
||
This log was last generated on Mon, 18 May 2020 23:31:12 GMT and should not be manually modified. | ||
This log was last generated on Tue, 15 Oct 2024 20:02:42 GMT and should not be manually modified. | ||
|
||
<!-- Start content --> | ||
|
||
## 2.1.3 | ||
|
||
Tue, 15 Oct 2024 20:02:42 GMT | ||
|
||
### Patches | ||
|
||
- fix: Properly import `npm-registry-fetch` in `react-native-macos-init` ([email protected]) | ||
|
||
## 2.1.0 | ||
|
||
Mon, 18 May 2020 23:31:12 GMT | ||
|
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 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 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 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 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 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
Oops, something went wrong.