Skip to content

Commit

Permalink
format start.js
Browse files Browse the repository at this point in the history
  • Loading branch information
ngocle2497 committed Aug 11, 2024
1 parent d8c025a commit fe77a64
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions template/scripts/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ const { getEnvJsonFromPath } = require('./common');

const envJson = getEnvJsonFromPath(envPath);

execSync(`npx expo start --appId ${envJson.public.BUNDLE_IDENTIFIER} --clear`, {
stdio: 'inherit',
});
execSync(
`npx expo start --appId ${envJson.public.BUNDLE_IDENTIFIER} --clear`,
{
stdio: 'inherit',
},
);
})();

0 comments on commit fe77a64

Please sign in to comment.