@mean-weasel/lineage 0.1.2 → 0.1.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.
@@ -1222,7 +1222,7 @@ function resolveStartOptions(config, args) {
1222
1222
  }
1223
1223
  return {
1224
1224
  dbPath: readOption(args, "--db") || process.env.LINEAGE_DB || join5(runtimeDir, `${config.binName}.sqlite`),
1225
- host: readOption(args, "--host") || process.env.HOST || "127.0.0.1",
1225
+ host: readOption(args, "--host") || process.env.HOST || config.defaultHost,
1226
1226
  json: args.includes("--json"),
1227
1227
  open: args.includes("--open"),
1228
1228
  port
@@ -1409,5 +1409,5 @@ function runLineageCli(config, args = process.argv.slice(2)) {
1409
1409
  }
1410
1410
 
1411
1411
  // src/cli/lineage.ts
1412
- runLineageCli({ binName: "lineage", channel: "stable", defaultPort: 5197, displayName: "Lineage" });
1412
+ runLineageCli({ binName: "lineage", channel: "stable", defaultHost: "lineage.localhost", defaultPort: 5197, displayName: "Lineage" });
1413
1413
  //# sourceMappingURL=lineage.js.map