@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.
- package/CHANGELOG.md +6 -0
- package/README.md +46 -1
- package/dist/cli/lineage-dev.js +2 -2
- package/dist/cli/lineage-dev.js.map +2 -2
- package/dist/cli/lineage.js +2 -2
- package/dist/cli/lineage.js.map +2 -2
- package/dist/server.js +410 -21
- package/dist/server.js.map +3 -3
- package/dist/web/assets/index-CTsKYXYF.js +19 -0
- package/dist/web/index.html +1 -1
- package/fixtures/demo-project/lineage/swissifier-rich-demo.json +194 -0
- package/package.json +1 -1
- package/dist/web/assets/index-Cm95o4aV.js +0 -19
package/dist/cli/lineage.js
CHANGED
|
@@ -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 ||
|
|
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
|