@prisma/cli 3.0.0-dev.115.1 → 3.0.0-dev.116.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.
@@ -12,6 +12,10 @@ async function promptForProjectSetupChoice(options) {
12
12
  output: options.context.runtime.stderr,
13
13
  message: "Which Project should this directory use?",
14
14
  choices: [
15
+ {
16
+ label: "+ Create a new Project",
17
+ value: { kind: "create" }
18
+ },
15
19
  ...sortedProjects.map((project) => ({
16
20
  label: duplicateNames.has(project.name) ? `${project.name} (${project.id})` : project.name,
17
21
  value: {
@@ -19,10 +23,6 @@ async function promptForProjectSetupChoice(options) {
19
23
  project
20
24
  }
21
25
  })),
22
- {
23
- label: "Create a new Project",
24
- value: { kind: "create" }
25
- },
26
26
  {
27
27
  label: "Cancel",
28
28
  value: { kind: "cancel" }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prisma/cli",
3
- "version": "3.0.0-dev.115.1",
3
+ "version": "3.0.0-dev.116.1",
4
4
  "description": "Command-line interface for the Prisma Developer Platform.",
5
5
  "type": "module",
6
6
  "bin": {