File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
packages/platform-apple-helpers/src/lib/commands/run Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ ' @rnef/platform-apple-helpers ' : patch
3+ ---
4+
5+ fix: allow framework as wrapper extension
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ export async function getBuildSettings(
6464
6565 const wrapperExtension = targetSettings . WRAPPER_EXTENSION ;
6666
67- if ( wrapperExtension === 'app' ) {
67+ if ( wrapperExtension === 'app' || wrapperExtension === 'framework' ) {
6868 const buildSettings = settings [ targetIndex ] . buildSettings as BuildSettings ;
6969
7070 if ( ! buildSettings ) {
@@ -82,7 +82,7 @@ export async function getBuildSettings(
8282 }
8383
8484 throw new RnefError (
85- `Failed to get build settings for your project. Looking for "app" wrapper extension but found: ${ wrapperExtension } `
85+ `Failed to get build settings for your project. Looking for "app" or "framework" wrapper extension but found: ${ wrapperExtension } `
8686 ) ;
8787}
8888
You can’t perform that action at this time.
0 commit comments