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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +1 -4
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-uix-app",
3
3
  "description": "Creates a starter project for UIx web app",
4
- "version": "1.4.0-rc1",
4
+ "version": "1.4.0-rc2",
5
5
  "author": {
6
6
  "name": "Roman Liutikov"
7
7
  },
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