exupery-core-bin 0.3.30 → 0.3.31

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.
@@ -53,7 +53,10 @@ exports.$$ = _easync.__create_query(($p) => {
53
53
  else {
54
54
  const out = {};
55
55
  files.forEach((file) => {
56
- out[($p['prepend results with path'] ? ($p.path.path + "/") : "") + file.name] = file.isFile() ? ['file', null] : ['directory', null];
56
+ out[file.name] = {
57
+ 'node type': file.isFile() ? ['file', null] : ['directory', null],
58
+ 'concatenated path': $p.path.path + "/" + file.name
59
+ };
57
60
  });
58
61
  on_value(_ei.dictionary_literal(out));
59
62
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exupery-core-bin",
3
- "version": "0.3.30",
3
+ "version": "0.3.31",
4
4
  "license": "ISC",
5
5
  "description": "this is one of the core packages for Exupery. it provides functionality to create executables",
6
6
  "author": "Corno",
@@ -27,8 +27,8 @@
27
27
  "url": "git+https://github.com/corno/exupery-core.git"
28
28
  },
29
29
  "dependencies": {
30
- "exupery-core-async": "^0.3.65",
30
+ "exupery-core-async": "^0.3.71",
31
31
  "exupery-core-internals": "^0.3.13",
32
- "exupery-resources": "^0.3.15"
32
+ "exupery-resources": "^0.3.16"
33
33
  }
34
34
  }