@adhdev/daemon-core 0.6.61 → 0.6.63

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adhdev/daemon-core",
3
- "version": "0.6.61",
3
+ "version": "0.6.63",
4
4
  "description": "ADHDev daemon core — CDP, IDE detection, providers, command execution",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -131,11 +131,12 @@ export class ProviderLoader {
131
131
  return this.getProviderDir(this.upstreamDir, category, type);
132
132
  }
133
133
 
134
- /**
135
- * Canonical builtin directory for a provider.
136
- */
134
+ /**
135
+ * Canonical builtin directory for a provider.
136
+ */
137
137
  getBuiltinProviderDir(category: ProviderCategory, type: string): string {
138
- return this.getProviderDir(this.getPrimaryBuiltinDir(), category, type);
138
+ const builtinRoot = this.getPrimaryBuiltinDir();
139
+ return builtinRoot ? this.getProviderDir(builtinRoot, category, type) : '';
139
140
  }
140
141
 
141
142
  /**