create-puck-app 0.19.2-canary.cccf9125 → 0.19.2-canary.e99ce1d4

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/index.js +15 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -71,11 +71,25 @@ program
71
71
  const questions = [
72
72
  ...beforeQuestions,
73
73
  {
74
- type: "input",
74
+ type: "list",
75
75
  name: "recipe",
76
76
  message: "Which recipe would you like to use?",
77
77
  required: true,
78
78
  default: "next",
79
+ choices: [
80
+ {
81
+ name: "Next.js",
82
+ value: "next",
83
+ },
84
+ {
85
+ name: "React Router",
86
+ value: "react-router",
87
+ },
88
+ {
89
+ name: "Remix",
90
+ value: "remix",
91
+ },
92
+ ],
79
93
  },
80
94
  ];
81
95
  const answers = await inquirer.prompt(questions);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-puck-app",
3
- "version": "0.19.2-canary.cccf9125",
3
+ "version": "0.19.2-canary.e99ce1d4",
4
4
  "author": "Chris Villa <chris@puckeditor.com>",
5
5
  "repository": "measuredco/puck",
6
6
  "bugs": "https://github.com/measuredco/puck/issues",