exupery-core-bin 0.3.37 → 0.3.38
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.
|
@@ -54,11 +54,13 @@ exports.$$ = _easync.__create_query(($p) => {
|
|
|
54
54
|
}
|
|
55
55
|
else {
|
|
56
56
|
const out = {};
|
|
57
|
-
files.forEach((
|
|
58
|
-
out[
|
|
59
|
-
'node type':
|
|
57
|
+
files.forEach((node) => {
|
|
58
|
+
out[node.name] = {
|
|
59
|
+
'node type': node.isFile()
|
|
60
|
+
? ['file', null]
|
|
61
|
+
: node.isDirectory() ? ['directory', null] : ['other', null],
|
|
60
62
|
'context directory': t_path_to_path.node_path_to_context_path($p.path.path),
|
|
61
|
-
'path': t_path_to_path.create_node_path(t_path_to_path.node_path_to_context_path($p.path.path), __possibly_escape_filename(
|
|
63
|
+
'path': t_path_to_path.create_node_path(t_path_to_path.node_path_to_context_path($p.path.path), __possibly_escape_filename(node.name, $p.path['escape spaces in path']))
|
|
62
64
|
};
|
|
63
65
|
});
|
|
64
66
|
on_value(_ei.dictionary_literal(out));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "exupery-core-bin",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.38",
|
|
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",
|
|
@@ -29,6 +29,6 @@
|
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"exupery-core-async": "^0.3.75",
|
|
31
31
|
"exupery-core-internals": "^0.3.17",
|
|
32
|
-
"exupery-resources": "^0.3.
|
|
32
|
+
"exupery-resources": "^0.3.37"
|
|
33
33
|
}
|
|
34
34
|
}
|