@highbeek/create-rnstarterkit 1.0.1 → 1.0.2-beta.1

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.
@@ -18,7 +18,7 @@ async function main() {
18
18
  : "Project name must be alphanumeric",
19
19
  },
20
20
  {
21
- type: "list",
21
+ type: "rawlist",
22
22
  name: "platform",
23
23
  message: "Choose platform",
24
24
  choices: ["Expo", "React Native CLI"],
@@ -36,14 +36,14 @@ async function main() {
36
36
  default: true,
37
37
  },
38
38
  {
39
- type: "list",
39
+ type: "rawlist",
40
40
  name: "state",
41
41
  message: "State management?",
42
- choices: ["None", "Redux Toolkit", "Zustand"],
43
- default: "None",
42
+ choices: ["None", "Context API", "Redux Toolkit", "Zustand"],
43
+ default: "Context API",
44
44
  },
45
45
  {
46
- type: "list",
46
+ type: "rawlist",
47
47
  name: "dataFetching",
48
48
  message: "Data fetching library?",
49
49
  choices: ["None", "React Query", "SWR", "Axios"],
@@ -57,7 +57,7 @@ async function main() {
57
57
  default: [],
58
58
  },
59
59
  {
60
- type: "list",
60
+ type: "rawlist",
61
61
  name: "storage",
62
62
  message: "Storage method?",
63
63
  choices: ["AsyncStorage", "MMKV", "None"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@highbeek/create-rnstarterkit",
3
- "version": "1.0.1",
3
+ "version": "1.0.2-beta.1",
4
4
  "description": "CLI to scaffold production-ready React Native app structures.",
5
5
  "main": "dist/src/generators/appGenerator.js",
6
6
  "bin": {