exupery-core-bin 0.3.40 → 0.3.42

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 (23) hide show
  1. package/dist/algorithms/{procedures → commands}/execute_any_smelly_procedure_executable.js +1 -1
  2. package/dist/algorithms/queries/read_directory.js +4 -2
  3. package/dist/index.js +10 -10
  4. package/package.json +4 -4
  5. /package/dist/algorithms/{procedures → commands}/copy.d.ts +0 -0
  6. /package/dist/algorithms/{procedures → commands}/copy.js +0 -0
  7. /package/dist/algorithms/{procedures → commands}/execute_any_procedure_executable.d.ts +0 -0
  8. /package/dist/algorithms/{procedures → commands}/execute_any_procedure_executable.js +0 -0
  9. /package/dist/algorithms/{procedures → commands}/execute_any_smelly_procedure_executable.d.ts +0 -0
  10. /package/dist/algorithms/{procedures → commands}/log.d.ts +0 -0
  11. /package/dist/algorithms/{procedures → commands}/log.js +0 -0
  12. /package/dist/algorithms/{procedures → commands}/log_error.d.ts +0 -0
  13. /package/dist/algorithms/{procedures → commands}/log_error.js +0 -0
  14. /package/dist/algorithms/{procedures → commands}/make_directory.d.ts +0 -0
  15. /package/dist/algorithms/{procedures → commands}/make_directory.js +0 -0
  16. /package/dist/algorithms/{procedures → commands}/remove.d.ts +0 -0
  17. /package/dist/algorithms/{procedures → commands}/remove.js +0 -0
  18. /package/dist/algorithms/{procedures → commands}/write_file.d.ts +0 -0
  19. /package/dist/algorithms/{procedures → commands}/write_file.js +0 -0
  20. /package/dist/algorithms/{procedures → commands}/write_to_stderr.d.ts +0 -0
  21. /package/dist/algorithms/{procedures → commands}/write_to_stderr.js +0 -0
  22. /package/dist/algorithms/{procedures → commands}/write_to_stdout.d.ts +0 -0
  23. /package/dist/algorithms/{procedures → commands}/write_to_stdout.js +0 -0
@@ -27,7 +27,7 @@ exports.$$ = void 0;
27
27
  const _easync = __importStar(require("exupery-core-async"));
28
28
  const _ei = __importStar(require("exupery-core-internals"));
29
29
  const node_child_process_1 = require("node:child_process");
30
- // import { Signature } from "exupery-resources/dist/interface/algorithms/procedures/execute_smelly_procedure_executable"
30
+ // import { Signature } from "exupery-resources/dist/interface/algorithms/commands/execute_smelly_procedure_executable"
31
31
  /**
32
32
  *
33
33
  * The executable being executed is assumed to only cause side effects
@@ -53,8 +53,10 @@ exports.$$ = _easync.__create_query(($p) => {
53
53
  'node type': node.isFile()
54
54
  ? ['file', null]
55
55
  : node.isDirectory() ? ['directory', null] : ['other', null],
56
- 'context directory': t_path_to_path.node_path_to_context_path($p.path),
57
- 'path': t_path_to_path.create_node_path(t_path_to_path.node_path_to_context_path($p.path), node.name)
56
+ 'context directory': t_path_to_path.deprecated_node_path_to_context_path($p.path),
57
+ 'path': t_path_to_path.extend_node_path($p.path, {
58
+ 'addition': node.name,
59
+ })
58
60
  };
59
61
  });
60
62
  on_value(_ei.dictionary_literal(out));
package/dist/index.js CHANGED
@@ -25,16 +25,16 @@ var __importStar = (this && this.__importStar) || function (mod) {
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
26
  exports.run_main_procedure = void 0;
27
27
  const _ei = __importStar(require("exupery-core-internals"));
28
- const copy_1 = require("./algorithms/procedures/copy");
29
- const execute_any_procedure_executable_1 = require("./algorithms/procedures/execute_any_procedure_executable");
30
- const execute_any_smelly_procedure_executable_1 = require("./algorithms/procedures/execute_any_smelly_procedure_executable");
31
- const log_1 = require("./algorithms/procedures/log");
32
- const log_error_1 = require("./algorithms/procedures/log_error");
33
- const make_directory_1 = require("./algorithms/procedures/make_directory");
34
- const remove_1 = require("./algorithms/procedures/remove");
35
- const write_file_1 = require("./algorithms/procedures/write_file");
36
- const write_to_stderr_1 = require("./algorithms/procedures/write_to_stderr");
37
- const write_to_stdout_1 = require("./algorithms/procedures/write_to_stdout");
28
+ const copy_1 = require("./algorithms/commands/copy");
29
+ const execute_any_procedure_executable_1 = require("./algorithms/commands/execute_any_procedure_executable");
30
+ const execute_any_smelly_procedure_executable_1 = require("./algorithms/commands/execute_any_smelly_procedure_executable");
31
+ const log_1 = require("./algorithms/commands/log");
32
+ const log_error_1 = require("./algorithms/commands/log_error");
33
+ const make_directory_1 = require("./algorithms/commands/make_directory");
34
+ const remove_1 = require("./algorithms/commands/remove");
35
+ const write_file_1 = require("./algorithms/commands/write_file");
36
+ const write_to_stderr_1 = require("./algorithms/commands/write_to_stderr");
37
+ const write_to_stdout_1 = require("./algorithms/commands/write_to_stdout");
38
38
  const execute_any_query_executable_1 = require("./algorithms/queries/execute_any_query_executable");
39
39
  const get_instream_data_1 = require("./algorithms/queries/get_instream_data");
40
40
  const read_directory_1 = require("./algorithms/queries/read_directory");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exupery-core-bin",
3
- "version": "0.3.40",
3
+ "version": "0.3.42",
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.75",
31
- "exupery-core-internals": "^0.3.17",
32
- "exupery-resources": "^0.3.38"
30
+ "exupery-core-async": "^0.3.77",
31
+ "exupery-core-internals": "^0.3.19",
32
+ "exupery-resources": "^0.3.42"
33
33
  }
34
34
  }
File without changes