@locusai/locus-telegram 0.24.8 → 0.24.9

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.
@@ -9456,7 +9456,11 @@ function readLocusConfig(cwd) {
9456
9456
  const globalRaw = readJsonFile(globalPath) ?? {};
9457
9457
  const projectRaw = readJsonFile(projectPath) ?? {};
9458
9458
  const merged = deepMerge(deepMerge(DEFAULT_CONFIG, globalRaw), projectRaw);
9459
- return merged;
9459
+ const config = merged;
9460
+ if (config.sprint && "active" in config.sprint) {
9461
+ delete config.sprint.active;
9462
+ }
9463
+ return config;
9460
9464
  }
9461
9465
  function invokeLocusStream(args, cwd) {
9462
9466
  return spawn("locus", args, {
@@ -9515,8 +9519,7 @@ var init_dist2 = __esm(() => {
9515
9519
  rebaseBeforeTask: true
9516
9520
  },
9517
9521
  sprint: {
9518
- active: null,
9519
- stopOnFailure: true
9522
+ stopOnFailure: false
9520
9523
  },
9521
9524
  logging: {
9522
9525
  level: "normal",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@locusai/locus-telegram",
3
- "version": "0.24.8",
3
+ "version": "0.24.9",
4
4
  "description": "Remote-control Locus via Telegram with full CLI mapping, git operations, and PM2 management",
5
5
  "type": "module",
6
6
  "bin": {
@@ -27,9 +27,9 @@
27
27
  },
28
28
  "dependencies": {
29
29
  "@grammyjs/runner": "^2.0.3",
30
- "@locusai/locus-gateway": "^0.24.8",
31
- "@locusai/locus-pm2": "^0.24.8",
32
- "@locusai/sdk": "^0.24.8",
30
+ "@locusai/locus-gateway": "^0.24.9",
31
+ "@locusai/locus-pm2": "^0.24.9",
32
+ "@locusai/sdk": "^0.24.9",
33
33
  "grammy": "^1.35.0"
34
34
  },
35
35
  "devDependencies": {