@openscout/scout 0.2.36 → 0.2.37
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/main.mjs
CHANGED
|
@@ -5626,7 +5626,8 @@ function resolveBrokerServiceConfig() {
|
|
|
5626
5626
|
const supportPaths = resolveOpenScoutSupportPaths();
|
|
5627
5627
|
const supportDirectory = supportPaths.supportDirectory;
|
|
5628
5628
|
const logsDirectory = supportPaths.brokerLogsDirectory;
|
|
5629
|
-
const
|
|
5629
|
+
const rawControlHome = supportPaths.controlHome;
|
|
5630
|
+
const controlHome = /^\/(?:private\/)?tmp\//.test(rawControlHome) ? join7(homedir4(), ".openscout", "control-plane") : rawControlHome;
|
|
5630
5631
|
const brokerHost = process.env.OPENSCOUT_BROKER_HOST ?? DEFAULT_BROKER_HOST;
|
|
5631
5632
|
const brokerPort = Number.parseInt(process.env.OPENSCOUT_BROKER_PORT ?? String(DEFAULT_BROKER_PORT), 10);
|
|
5632
5633
|
const brokerUrl = process.env.OPENSCOUT_BROKER_URL ?? buildDefaultBrokerUrl(brokerHost, brokerPort);
|
package/dist/pair-supervisor.mjs
CHANGED
|
@@ -4855,7 +4855,8 @@ function resolveBrokerServiceConfig() {
|
|
|
4855
4855
|
const supportPaths = resolveOpenScoutSupportPaths();
|
|
4856
4856
|
const supportDirectory = supportPaths.supportDirectory;
|
|
4857
4857
|
const logsDirectory = supportPaths.brokerLogsDirectory;
|
|
4858
|
-
const
|
|
4858
|
+
const rawControlHome = supportPaths.controlHome;
|
|
4859
|
+
const controlHome = /^\/(?:private\/)?tmp\//.test(rawControlHome) ? join12(homedir11(), ".openscout", "control-plane") : rawControlHome;
|
|
4859
4860
|
const brokerHost = process.env.OPENSCOUT_BROKER_HOST ?? DEFAULT_BROKER_HOST;
|
|
4860
4861
|
const brokerPort = Number.parseInt(process.env.OPENSCOUT_BROKER_PORT ?? String(DEFAULT_BROKER_PORT), 10);
|
|
4861
4862
|
const brokerUrl = process.env.OPENSCOUT_BROKER_URL ?? buildDefaultBrokerUrl(brokerHost, brokerPort);
|
|
@@ -4267,7 +4267,8 @@ function resolveBrokerServiceConfig() {
|
|
|
4267
4267
|
const supportPaths = resolveOpenScoutSupportPaths();
|
|
4268
4268
|
const supportDirectory = supportPaths.supportDirectory;
|
|
4269
4269
|
const logsDirectory = supportPaths.brokerLogsDirectory;
|
|
4270
|
-
const
|
|
4270
|
+
const rawControlHome = supportPaths.controlHome;
|
|
4271
|
+
const controlHome = /^\/(?:private\/)?tmp\//.test(rawControlHome) ? join8(homedir5(), ".openscout", "control-plane") : rawControlHome;
|
|
4271
4272
|
const brokerHost = process.env.OPENSCOUT_BROKER_HOST ?? DEFAULT_BROKER_HOST;
|
|
4272
4273
|
const brokerPort = Number.parseInt(process.env.OPENSCOUT_BROKER_PORT ?? String(DEFAULT_BROKER_PORT), 10);
|
|
4273
4274
|
const brokerUrl = process.env.OPENSCOUT_BROKER_URL ?? buildDefaultBrokerUrl(brokerHost, brokerPort);
|
|
@@ -4937,7 +4937,8 @@ function resolveBrokerServiceConfig() {
|
|
|
4937
4937
|
const supportPaths = resolveOpenScoutSupportPaths();
|
|
4938
4938
|
const supportDirectory = supportPaths.supportDirectory;
|
|
4939
4939
|
const logsDirectory = supportPaths.brokerLogsDirectory;
|
|
4940
|
-
const
|
|
4940
|
+
const rawControlHome = supportPaths.controlHome;
|
|
4941
|
+
const controlHome = /^\/(?:private\/)?tmp\//.test(rawControlHome) ? join8(homedir5(), ".openscout", "control-plane") : rawControlHome;
|
|
4941
4942
|
const brokerHost = process.env.OPENSCOUT_BROKER_HOST ?? DEFAULT_BROKER_HOST;
|
|
4942
4943
|
const brokerPort = Number.parseInt(process.env.OPENSCOUT_BROKER_PORT ?? String(DEFAULT_BROKER_PORT), 10);
|
|
4943
4944
|
const brokerUrl = process.env.OPENSCOUT_BROKER_URL ?? buildDefaultBrokerUrl(brokerHost, brokerPort);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openscout/scout",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.37",
|
|
4
4
|
"description": "Published Scout package that installs the `scout` command",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"type": "module",
|
|
@@ -17,12 +17,12 @@
|
|
|
17
17
|
"dev": "bun ../../apps/desktop/bin/scout.ts",
|
|
18
18
|
"test:happy": "node --test test/*.test.mjs",
|
|
19
19
|
"prepack": "npm run build && node ../../scripts/prepare-publish-manifest.mjs .",
|
|
20
|
-
"
|
|
20
|
+
"postpublish": "node ../../scripts/restore-publish-manifest.mjs ."
|
|
21
21
|
},
|
|
22
22
|
"publishConfig": {
|
|
23
23
|
"access": "public"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@openscout/runtime": "0.2.
|
|
26
|
+
"@openscout/runtime": "0.2.37"
|
|
27
27
|
}
|
|
28
28
|
}
|