feat(mobile): iOS app testflight (#8501)

This commit is contained in:
Brooooooklyn
2024-10-18 09:30:38 +00:00
parent ce341a9a30
commit 714a87c2c0
103 changed files with 2837 additions and 19 deletions

View File

@@ -25,6 +25,10 @@ module.exports.getCwdFromDistribution = function getCwdFromDistribution(
return join(projectRoot, 'packages/frontend/admin');
case 'mobile':
return join(projectRoot, 'packages/frontend/apps/mobile');
case 'ios':
return join(projectRoot, 'packages/frontend/apps/ios');
case 'android':
return join(projectRoot, 'packages/frontend/apps/android');
default: {
throw new Error(
'DISTRIBUTION must be one of web, desktop, admin, mobile'