create-uix-app 1.4.0-rc1 → 1.4.0-rc2
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/index.js +1 -4
package/package.json
CHANGED
package/src/index.js
CHANGED
@@ -16,10 +16,7 @@ program
|
|
16
16
|
.argument("<project-name>", "directory where a project will be created")
|
17
17
|
.option("--re-frame", "add re-frame setup")
|
18
18
|
.option("--react-native", "setup in existing React Native project")
|
19
|
-
.option(
|
20
|
-
"--react-native-expo",
|
21
|
-
"create a new React Native project using Expo"
|
22
|
-
);
|
19
|
+
.option("--expo", "create a new React Native project using Expo");
|
23
20
|
|
24
21
|
program.parse();
|
25
22
|
|