@neuralnomads/codenomad 0.9.3 → 0.9.4

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.
@@ -169,19 +169,18 @@ export class FileSystemBrowser {
169
169
  const dirents = fs.readdirSync(directory, { withFileTypes: true });
170
170
  const results = [];
171
171
  for (const entry of dirents) {
172
- if (!options.includeFiles && !entry.isDirectory()) {
173
- continue;
174
- }
175
172
  const absoluteEntryPath = path.join(directory, entry.name);
176
173
  let stats;
177
174
  try {
175
+ // Use fs.statSync (not Dirent.isDirectory) so symlinks to directories
176
+ // are treated as directories in directory-only listings.
178
177
  stats = fs.statSync(absoluteEntryPath);
179
178
  }
180
179
  catch {
181
180
  // Skip entries we cannot stat (insufficient permissions, etc.)
182
181
  continue;
183
182
  }
184
- const isDirectory = entry.isDirectory();
183
+ const isDirectory = stats.isDirectory();
185
184
  if (!options.includeFiles && !isDirectory) {
186
185
  continue;
187
186
  }
@@ -2,7 +2,8 @@
2
2
  "name": "@codenomad/opencode-config",
3
3
  "version": "0.5.0",
4
4
  "private": true,
5
+ "license": "MIT",
5
6
  "dependencies": {
6
- "@opencode-ai/plugin": "1.1.36"
7
+ "@opencode-ai/plugin": "1.1.42"
7
8
  }
8
9
  }
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "@neuralnomads/codenomad",
3
- "version": "0.9.3",
3
+ "version": "0.9.4",
4
4
  "description": "CodeNomad Server",
5
+ "license": "MIT",
5
6
  "author": {
6
7
  "name": "Neural Nomads",
7
8
  "email": "codenomad@neuralnomads.ai"