This repository has been archived by the owner on Oct 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 232
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Exclude react-native from CI publish (#211)
We are skipping react-native until we have a solution for the problem described here: expo/expo#1767 If expo will not resolve then we will have to find another workaround
- Loading branch information
1 parent
f4b5f3c
commit df20346
Showing
2 changed files
with
11 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -18,7 +18,10 @@ npm install -g [email protected] | |
# Install required dependencies | ||
npm install -g lerna | ||
|
||
if ! lerna bootstrap; then | ||
# We are skipping react-native until we have a solution for the problem described here: https://github.com/expo/expo/issues/1767 | ||
# If expo will not resolve then we will have to find another workaround | ||
|
||
if ! lerna bootstrap --ignore "@okta/okta-react-native"; then | ||
echo "lerna bootstrap failed! Exiting..." | ||
exit ${FAILED_SETUP} | ||
fi |