@neon-rs/cli 0.0.119 → 0.0.121

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.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -15107,7 +15107,7 @@ async function subdirs(dir) {
15107
15107
  const entries = await promises_namespaceObject.readdir(dir);
15108
15108
  let dirs = [];
15109
15109
  for (const entry of entries) {
15110
- if ((await promises_namespaceObject.stat(entry)).isDirectory()) {
15110
+ if ((await promises_namespaceObject.stat(external_node_path_namespaceObject.join(dir, entry))).isDirectory()) {
15111
15111
  dirs.push(entry);
15112
15112
  }
15113
15113
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neon-rs/cli",
3
- "version": "0.0.119",
3
+ "version": "0.0.121",
4
4
  "description": "Command-line build tool for Neon modules.",
5
5
  "type": "module",
6
6
  "exports": "./index.js",