@codemoreira/esad 1.4.6-32 → 1.4.6-33
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/package.json +1 -1
- package/src/cli/commands/host.js +1 -0
package/package.json
CHANGED
package/src/cli/commands/host.js
CHANGED
|
@@ -139,6 +139,7 @@ module.exports = async (subcommand) => {
|
|
|
139
139
|
} else {
|
|
140
140
|
// Other subcommands (android, ios directly)
|
|
141
141
|
try {
|
|
142
|
+
if (subcommand === 'android') {
|
|
142
143
|
await runProcess('react-native', ['run-android', '--no-packager'], cwd);
|
|
143
144
|
} else if (subcommand === 'ios') {
|
|
144
145
|
await runProcess('react-native', ['run-ios', '--no-packager'], cwd);
|