@axeth/create-cli 1.0.2 → 1.0.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axeth/create-cli",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "bin": {
5
5
  "axeth-cli": "index.ts"
6
6
  },
@@ -111,7 +111,6 @@ class AxethCLI {
111
111
  const spinner = prompt.spinner({ indicator: "dots" });
112
112
  spinner.start("Fetching latest Axeth API version...");
113
113
  const versions = await this.getAxethApiVersion();
114
- console.log(versions);
115
114
  spinner.stop(`Fetched @axeth/api ${versions.length} versions.`);
116
115
  this.registerPrompt("config", "axethApiVersion", "Select Axeth API version", "select", {
117
116
  options: versions.slice(0, 10).map((ver) => ({ label: ver, value: ver })),