inflight-cli 2.2.0 → 2.2.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.
@@ -328,14 +328,14 @@ export async function shareCommand(opts = {}) {
328
328
  }));
329
329
  if (recentProjects.length > 0) {
330
330
  const projectChoice = await p.select({
331
- message: "Add to an existing version or start fresh?",
331
+ message: "Add to an existing project or start a new one?",
332
332
  options: [
333
+ { value: "new", label: "Start a new project" },
333
334
  ...recentProjects.map((proj) => ({
334
335
  value: proj.projectId,
335
336
  label: `"${proj.latestVersion.title}"`,
336
337
  hint: `created ${formatRelativeTime(proj.latestVersion.createdAt)}`,
337
338
  })),
338
- { value: "new", label: "Start fresh" },
339
339
  ],
340
340
  });
341
341
  if (p.isCancel(projectChoice)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "inflight-cli",
3
- "version": "2.2.0",
3
+ "version": "2.2.1",
4
4
  "description": "Get feedback directly on your staging URL",
5
5
  "bin": {
6
6
  "inflight": "dist/index.js",