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.
- package/dist/commands/share.js +2 -2
- package/package.json +1 -1
package/dist/commands/share.js
CHANGED
|
@@ -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
|
|
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)) {
|