@codemoreira/esad 1.4.6-17 → 1.4.6-19
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 +2 -2
- package/src/cli/commands/host.js +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codemoreira/esad",
|
|
3
|
-
"version": "1.4.6-
|
|
3
|
+
"version": "1.4.6-19",
|
|
4
4
|
"description": "Easy Super App Development - Zero-Config CLI and DevTools for React Native Module Federation",
|
|
5
5
|
"main": "src/plugin/index.js",
|
|
6
6
|
"types": "./src/plugin/index.d.ts",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@callstack/repack": "^5.2.5",
|
|
35
35
|
"@callstack/repack-plugin-expo-modules": "^5.2.5",
|
|
36
36
|
"@callstack/repack-plugin-reanimated": "^5.2.5",
|
|
37
|
-
"@module-federation/enhanced": "^2.
|
|
37
|
+
"@module-federation/enhanced": "^2.3.0",
|
|
38
38
|
"@rspack/core": "^1.7.8",
|
|
39
39
|
"@swc/core": "^1.7.0",
|
|
40
40
|
"@swc/helpers": "^0.5.11",
|
package/src/cli/commands/host.js
CHANGED
|
@@ -120,6 +120,8 @@ module.exports = async (subcommand) => {
|
|
|
120
120
|
}
|
|
121
121
|
|
|
122
122
|
// 6. Launch Native App
|
|
123
|
+
if (choice === 'a') {
|
|
124
|
+
console.log(`🤖 Compiling and launching on Android...`);
|
|
123
125
|
await runProcess('npx', ['react-native', 'run-android', '--no-packager'], cwd);
|
|
124
126
|
} else if (choice === 'i') {
|
|
125
127
|
console.log(`🍎 Compiling and launching on iOS...`);
|