@dench.com/cli 0.4.8 → 2.0.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/host.ts CHANGED
@@ -1,4 +1,4 @@
1
- export const PRODUCTION_HOST = "https://dench.dev";
1
+ export const PRODUCTION_HOST = "https://dench.com";
2
2
  export const STAGING_HOST = "https://workspace-staging.dench.com";
3
3
  export const LOCAL_HOST = "http://localhost:3000";
4
4
  export const DEFAULT_HOST = PRODUCTION_HOST;
@@ -63,7 +63,7 @@ export function resolveBackendAlias(input: string): string {
63
63
  const value = input.trim();
64
64
  if (!value) {
65
65
  throw new Error(
66
- "Backend value is empty. Pass local, staging, prod, or a URL like https://dench.dev.",
66
+ "Backend value is empty. Pass local, staging, prod, or a URL like https://dench.com.",
67
67
  );
68
68
  }
69
69
  const normalized = value.toLowerCase();
@@ -80,7 +80,7 @@ export function resolveBackendAlias(input: string): string {
80
80
  return normalizeHost(value);
81
81
  } catch (_error) {
82
82
  throw new Error(
83
- `Unrecognized backend "${value}". Use local, staging, prod, or a URL like https://dench.dev.`,
83
+ `Unrecognized backend "${value}". Use local, staging, prod, or a URL like https://dench.com.`,
84
84
  );
85
85
  }
86
86
  }