Skip to content

Commit

Permalink
ci: fix formatting breaking publishing (#1897)
Browse files Browse the repository at this point in the history
  • Loading branch information
tido64 committed Mar 12, 2024
1 parent cc2ad04 commit 8698df2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,9 @@ jobs:
if [[ -n "$GITHUB_TOKEN" ]]; then
git diff | yarn suggestion-bot
else
git diff --exit-code
git diff
fi
git diff --exit-code
echo "::add-matcher::.github/eslint-stylish.json"
yarn lint:js
echo "::remove-matcher owner=eslint-stylish::"
Expand Down
7 changes: 5 additions & 2 deletions scripts/configure.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ export function reactNativeConfig(

case "ios":
case "macos":
case "visionos":
case "visionos":
return reactNativeConfigAppleFlat();

case "windows":
Expand Down Expand Up @@ -433,7 +433,10 @@ export const getConfig = (() => {
},
dependencies: {},
getDependencies: ({ targetVersion }) => {
return getPlatformPackage("@callstack/react-native-visionos", targetVersion);
return getPlatformPackage(
"@callstack/react-native-visionos",
targetVersion
);
},
},
windows: {
Expand Down
6 changes: 5 additions & 1 deletion scripts/init.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,11 @@ function main() {
{ title: "Android", value: "android", selected: true },
{ title: "iOS", value: "ios", selected: true },
{ title: "macOS", value: "macos", selected: true },
{ title: "visionOS (Experimental)", value: "visionos", selected: false },
{
title: "visionOS (Experimental)",
value: "visionos",
selected: false,
},
{ title: "Windows", value: "windows", selected: true },
],
min: 1,
Expand Down

0 comments on commit 8698df2

Please sign in to comment.