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.
- package/dist/cli.js +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://
|
|
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://
|
|
6321
|
+
placeholder: "https://archivelabs.dev",
|
|
6322
6322
|
validate(value) {
|
|
6323
6323
|
try {
|
|
6324
6324
|
if (typeof value !== "string") {
|
package/package.json
CHANGED