@sechroom/cli 2026.6.26 → 2026.6.27
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 +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3351,7 +3351,8 @@ async function resolveFanoutLane(cfg, opts) {
|
|
|
3351
3351
|
let code = opts.lane ?? process.env.SECHROOM_CODE_LANE;
|
|
3352
3352
|
let design = opts.designLane ?? process.env.SECHROOM_DESIGN_LANE;
|
|
3353
3353
|
if (!code || !design) {
|
|
3354
|
-
const
|
|
3354
|
+
const clients = detectInstalledClients(process.cwd());
|
|
3355
|
+
const inferred = await inferLanes(cfg, clients.length ? clients : void 0);
|
|
3355
3356
|
code = code ?? inferred.code;
|
|
3356
3357
|
design = design ?? inferred.design;
|
|
3357
3358
|
}
|
package/package.json
CHANGED