@dropthis/cli 0.13.0 → 0.14.0
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 +6 -5
- package/dist/cli.cjs.map +1 -1
- package/node_modules/@dropthis/node/dist/{drops-DP4F1PQu.d.cts → drops-DephtJf-.d.cts} +2 -0
- package/node_modules/@dropthis/node/dist/{drops-DP4F1PQu.d.ts → drops-DephtJf-.d.ts} +2 -0
- package/node_modules/@dropthis/node/dist/edge.cjs +1 -1
- package/node_modules/@dropthis/node/dist/edge.cjs.map +1 -1
- package/node_modules/@dropthis/node/dist/edge.d.cts +1 -1
- package/node_modules/@dropthis/node/dist/edge.d.ts +1 -1
- package/node_modules/@dropthis/node/dist/edge.mjs +1 -1
- package/node_modules/@dropthis/node/dist/edge.mjs.map +1 -1
- package/node_modules/@dropthis/node/dist/index.cjs +1 -1
- package/node_modules/@dropthis/node/dist/index.cjs.map +1 -1
- package/node_modules/@dropthis/node/dist/index.d.cts +2 -2
- package/node_modules/@dropthis/node/dist/index.d.ts +2 -2
- package/node_modules/@dropthis/node/dist/index.mjs +1 -1
- package/node_modules/@dropthis/node/dist/index.mjs.map +1 -1
- package/node_modules/@dropthis/node/package.json +1 -1
- package/package.json +2 -2
package/dist/cli.cjs
CHANGED
|
@@ -880,13 +880,13 @@ async function runDoctor(_input, deps) {
|
|
|
880
880
|
const authSource = credential?.source ?? "missing";
|
|
881
881
|
const storageBackend = stored?.storage ?? "none";
|
|
882
882
|
const pairs = [
|
|
883
|
-
["Version", "0.
|
|
883
|
+
["Version", "0.14.0"],
|
|
884
884
|
["Auth", authSource],
|
|
885
885
|
["Storage", storageBackend]
|
|
886
886
|
];
|
|
887
887
|
writeKv(deps, pairs, {
|
|
888
888
|
ok: true,
|
|
889
|
-
version: "0.
|
|
889
|
+
version: "0.14.0",
|
|
890
890
|
auth: { source: authSource },
|
|
891
891
|
storage: { backend: storageBackend }
|
|
892
892
|
});
|
|
@@ -1335,6 +1335,7 @@ async function runDropsGet(target, _input, deps) {
|
|
|
1335
1335
|
pairs.push(["Revision", String(data.revision)]);
|
|
1336
1336
|
if (data.createdAt)
|
|
1337
1337
|
pairs.push(["Created", formatDate(String(data.createdAt))]);
|
|
1338
|
+
if (data.domain) pairs.push(["Domain", String(data.domain)]);
|
|
1338
1339
|
if (data.accessible !== void 0)
|
|
1339
1340
|
pairs.push(["Accessible", String(data.accessible)]);
|
|
1340
1341
|
if (data.persistent !== void 0)
|
|
@@ -2566,7 +2567,7 @@ function buildProgram(options = {}) {
|
|
|
2566
2567
|
` ${import_picocolors6.default.cyan("dropthis login")}`,
|
|
2567
2568
|
` ${import_picocolors6.default.cyan("dropthis publish ./dist")}`
|
|
2568
2569
|
].join("\n")
|
|
2569
|
-
).version("0.
|
|
2570
|
+
).version("0.14.0").configureHelp({
|
|
2570
2571
|
subcommandTerm(cmd) {
|
|
2571
2572
|
const args = cmd.registeredArguments.map((a) => {
|
|
2572
2573
|
const name = a.name();
|
|
@@ -3107,7 +3108,7 @@ ${lines.map((l) => ` ${l}`).join("\n")}
|
|
|
3107
3108
|
);
|
|
3108
3109
|
const result = await runUpgrade(commandOptions, {
|
|
3109
3110
|
...deps,
|
|
3110
|
-
currentVersion: "0.
|
|
3111
|
+
currentVersion: "0.14.0"
|
|
3111
3112
|
});
|
|
3112
3113
|
process.exitCode = result.exitCode;
|
|
3113
3114
|
});
|
|
@@ -3350,7 +3351,7 @@ var showNotice = shouldShowNotice({
|
|
|
3350
3351
|
if (showNotice) {
|
|
3351
3352
|
const notice = noticeFromCache({
|
|
3352
3353
|
cache: updateCache,
|
|
3353
|
-
currentVersion: "0.
|
|
3354
|
+
currentVersion: "0.14.0"
|
|
3354
3355
|
});
|
|
3355
3356
|
if (notice) {
|
|
3356
3357
|
process.stderr.write(`
|