archive-labs 1.0.7 → 1.0.8

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/cli.js +2 -2
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -51,7 +51,7 @@ const defaultStatusWindowDays = 14;
51
51
  const systemCheckStaleSyncThresholdMs = 72 * 60 * 60 * 1000;
52
52
  const impactPollIntervalMs = 1500;
53
53
  const defaultApiUrl = "https://api.archivelabs.dev";
54
- const defaultAppUrl = "https://app.archivelabs.dev";
54
+ const defaultAppUrl = "https://archivelabs.dev";
55
55
  const defaultLocalAppUrl = "http://localhost:8080";
56
56
  const legacyApiUrl = "http://localhost:3000";
57
57
  const legacyAppUrl = "http://localhost:5173";
@@ -6318,7 +6318,7 @@ const runInit = async (options = {}) => {
6318
6318
  const response = await clack.text({
6319
6319
  defaultValue: resolvedAppUrl,
6320
6320
  message: "Archive Labs app URL",
6321
- placeholder: "https://app.archivelabs.dev",
6321
+ placeholder: "https://archivelabs.dev",
6322
6322
  validate(value) {
6323
6323
  try {
6324
6324
  if (typeof value !== "string") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "archive-labs",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "Terminal CLI for Archive that manages login, repository status, sync, checks, impact analysis, and release risk.",
5
5
  "license": "Apache-2.0",
6
6
  "preferGlobal": true,