opencode-swarm 6.35.2 → 6.35.3

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/cli/index.js CHANGED
@@ -36085,6 +36085,10 @@ function detectAdditionalLinter(cwd) {
36085
36085
  }
36086
36086
  async function detectAvailableLinter(directory) {
36087
36087
  const _DETECT_TIMEOUT = 2000;
36088
+ if (!directory)
36089
+ return null;
36090
+ if (!fs6.existsSync(directory))
36091
+ return null;
36088
36092
  const projectDir = directory;
36089
36093
  const isWindows = process.platform === "win32";
36090
36094
  const biomeBin = isWindows ? path17.join(projectDir, "node_modules", ".bin", "biome.EXE") : path17.join(projectDir, "node_modules", ".bin", "biome");
package/dist/index.js CHANGED
@@ -33873,6 +33873,10 @@ function detectAdditionalLinter(cwd) {
33873
33873
  }
33874
33874
  async function detectAvailableLinter(directory) {
33875
33875
  const _DETECT_TIMEOUT = 2000;
33876
+ if (!directory)
33877
+ return null;
33878
+ if (!fs12.existsSync(directory))
33879
+ return null;
33876
33880
  const projectDir = directory;
33877
33881
  const isWindows = process.platform === "win32";
33878
33882
  const biomeBin = isWindows ? path23.join(projectDir, "node_modules", ".bin", "biome.EXE") : path23.join(projectDir, "node_modules", ".bin", "biome");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-swarm",
3
- "version": "6.35.2",
3
+ "version": "6.35.3",
4
4
  "description": "Architect-centric agentic swarm plugin for OpenCode - hub-and-spoke orchestration with SME consultation, code generation, and QA review",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",