@beastmode-develeap/beastmode 0.1.66 → 0.1.67
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.js +0 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5636,9 +5636,6 @@ Path: ${projConfig.path}
|
|
|
5636
5636
|
handler: () => {
|
|
5637
5637
|
const configPath = join13(factoryDir, ".beastmode", "config.json");
|
|
5638
5638
|
const raw = existsSync15(configPath) ? JSON.parse(readFileSync12(configPath, "utf-8")) : generateDefaults();
|
|
5639
|
-
if (raw.pipeline && typeof raw.pipeline === "object") {
|
|
5640
|
-
delete raw.pipeline.parallel_coders;
|
|
5641
|
-
}
|
|
5642
5639
|
return raw;
|
|
5643
5640
|
}
|
|
5644
5641
|
},
|
|
@@ -5688,9 +5685,6 @@ Path: ${projConfig.path}
|
|
|
5688
5685
|
}
|
|
5689
5686
|
}
|
|
5690
5687
|
const merged = deepMerge2(current, updatesClean);
|
|
5691
|
-
if (merged.pipeline && typeof merged.pipeline === "object") {
|
|
5692
|
-
delete merged.pipeline.parallel_coders;
|
|
5693
|
-
}
|
|
5694
5688
|
writeFileSync12(configPath, JSON.stringify(merged, null, 2) + "\n", "utf-8");
|
|
5695
5689
|
const daemonConfigPaths = [
|
|
5696
5690
|
join13(factoryDir, "config", "beastmode.daemon.json"),
|