@addorimprove/prompt 0.3.1 → 0.4.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.
Files changed (2) hide show
  1. package/dist/prompt.js +1 -1
  2. package/package.json +1 -1
package/dist/prompt.js CHANGED
@@ -134,7 +134,7 @@ function describeApiError(e) {
134
134
  import { homedir } from "node:os";
135
135
  import { join } from "node:path";
136
136
  import { mkdirSync, readFileSync, writeFileSync, rmSync, chmodSync, existsSync } from "node:fs";
137
- var DEFAULT_BASE_URL = "https://app.photosharingapp.com";
137
+ var DEFAULT_BASE_URL = "https://addorimprove.com";
138
138
  function configDir() {
139
139
  const xdg = process.env.XDG_CONFIG_HOME;
140
140
  return xdg ? join(xdg, "prompt") : join(homedir(), ".config", "prompt");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@addorimprove/prompt",
3
- "version": "0.3.1",
3
+ "version": "0.4.0",
4
4
  "type": "module",
5
5
  "bin": { "prompt": "dist/prompt.js" },
6
6
  "files": ["dist"],