@owloops/browserbird 1.2.9 → 1.2.10
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/index.mjs +5 -5
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -122,8 +122,8 @@ function unknownSubcommand(subcommand, command, validCommands) {
|
|
|
122
122
|
/** @fileoverview ASCII banner displayed on daemon startup and in help text. */
|
|
123
123
|
const pkg = createRequire(import.meta.url)("../package.json");
|
|
124
124
|
const buildInfo = [];
|
|
125
|
-
buildInfo.push(`commit: ${"
|
|
126
|
-
buildInfo.push(`built: 2026-03-
|
|
125
|
+
buildInfo.push(`commit: ${"bddda226a98294fa5e272a0f50b3e8f52dab935f".substring(0, 7)}`);
|
|
126
|
+
buildInfo.push(`built: 2026-03-09T14:46:24+04:00`);
|
|
127
127
|
const buildString = buildInfo.length > 0 ? ` (${buildInfo.join(", ")})` : "";
|
|
128
128
|
const VERSION = `browserbird ${pkg.version}${buildString}`;
|
|
129
129
|
const BIRD = [
|
|
@@ -3962,8 +3962,7 @@ async function startDaemon(options) {
|
|
|
3962
3962
|
clearBrowserLock();
|
|
3963
3963
|
startWorker(controller.signal);
|
|
3964
3964
|
loadDotEnv(envPath);
|
|
3965
|
-
let currentConfig =
|
|
3966
|
-
ensureMcpConfig(currentConfig, configDir);
|
|
3965
|
+
let currentConfig = loadRawConfig(configPath);
|
|
3967
3966
|
let slackHandle = null;
|
|
3968
3967
|
let setupMode = true;
|
|
3969
3968
|
const getConfig = () => currentConfig;
|
|
@@ -4005,7 +4004,8 @@ async function startDaemon(options) {
|
|
|
4005
4004
|
logger.info("config reloaded");
|
|
4006
4005
|
};
|
|
4007
4006
|
if (hasSlackTokens(configPath)) {
|
|
4008
|
-
|
|
4007
|
+
currentConfig = loadConfig(configPath);
|
|
4008
|
+
ensureMcpConfig(currentConfig, configDir);
|
|
4009
4009
|
setSetting("onboarding_completed", "true");
|
|
4010
4010
|
startFull(currentConfig);
|
|
4011
4011
|
} else {
|