react-native-bootsplash 5.4.0 → 5.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/generate.ts CHANGED
@@ -116,6 +116,7 @@ export const addFileToXcodeProject = (filePath: string) => {
116
116
  filepath: filePath,
117
117
  groupName: path.parse(xcodeProjectPath).name,
118
118
  project,
119
+ isBuildFile: true,
119
120
  });
120
121
 
121
122
  hfs.write(pbxprojectPath, project.writeSync());
@@ -636,7 +637,9 @@ export const generate = async ({
636
637
  { whiteSpaceAtEndOfSelfclosingTag: false },
637
638
  );
638
639
 
639
- addFileToXcodeProject(storyboardPath);
640
+ addFileToXcodeProject(
641
+ path.join(path.basename(iosProjectPath), "BootSplash.storyboard"),
642
+ );
640
643
 
641
644
  const infoPlistPath = path.join(iosProjectPath, "Info.plist");
642
645