@dropthis/cli 0.30.0 → 0.30.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/cli.cjs +5 -1
- package/dist/cli.cjs.map +1 -1
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -407,6 +407,10 @@ function formatDropDetails(data) {
|
|
|
407
407
|
if (vis === "unlisted") parts.push("unlisted");
|
|
408
408
|
const exp = data.expiresAt;
|
|
409
409
|
if (typeof exp === "string") parts.push(`expires ${exp.split("T")[0]}`);
|
|
410
|
+
const ws = data.workspace;
|
|
411
|
+
if (ws && ws.kind === "team" && typeof ws.name === "string") {
|
|
412
|
+
parts.push(`team: ${ws.name}`);
|
|
413
|
+
}
|
|
410
414
|
if (parts.length === 0) return "";
|
|
411
415
|
return ` ${import_picocolors2.default.dim(parts.join(" \xB7 "))}`;
|
|
412
416
|
}
|
|
@@ -1009,7 +1013,7 @@ function spreadData(data) {
|
|
|
1009
1013
|
}
|
|
1010
1014
|
|
|
1011
1015
|
// src/version.ts
|
|
1012
|
-
var CLI_VERSION = true ? "0.30.
|
|
1016
|
+
var CLI_VERSION = true ? "0.30.1" : "0.0.0-dev";
|
|
1013
1017
|
|
|
1014
1018
|
// src/commands/doctor.ts
|
|
1015
1019
|
async function runDoctor(_input, deps) {
|