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/README.md +1 -1
- package/dist/commonjs/addon/index.js +29 -29
- package/dist/commonjs/addon/index.js.map +1 -1
- package/dist/commonjs/generate.js +3 -2
- package/dist/commonjs/generate.js.map +1 -1
- package/dist/module/addon/index.js +29 -29
- package/dist/module/addon/index.js.map +1 -1
- package/dist/module/generate.js +3 -2
- package/dist/module/generate.js.map +1 -1
- package/dist/typescript/addon/index.d.ts.map +1 -1
- package/dist/typescript/generate.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/generate.ts +4 -1
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(
|
|
640
|
+
addFileToXcodeProject(
|
|
641
|
+
path.join(path.basename(iosProjectPath), "BootSplash.storyboard"),
|
|
642
|
+
);
|
|
640
643
|
|
|
641
644
|
const infoPlistPath = path.join(iosProjectPath, "Info.plist");
|
|
642
645
|
|