@dashai/cli 0.7.0 → 0.7.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/bin.js CHANGED
@@ -4064,7 +4064,7 @@ function scanOutboundHosts(dir) {
4064
4064
  const abs = join(dir, d);
4065
4065
  if (existsSync(abs)) walk2(abs);
4066
4066
  }
4067
- return Array.from(hosts).sort();
4067
+ return Array.from(hosts, (h) => `https://${h}`).sort();
4068
4068
  }
4069
4069
  async function moduleConvertCommand(opts) {
4070
4070
  try {
@@ -7132,7 +7132,7 @@ fieldCmd.command("set-type <table-slug> <field-slug> <new-type>").description(
7132
7132
  }
7133
7133
  })();
7134
7134
  function getVersion() {
7135
- return "0.7.0";
7135
+ return "0.7.1";
7136
7136
  }
7137
7137
  function parseIntOption(value) {
7138
7138
  const n = Number.parseInt(value, 10);