pareto-host-nodejs 0.2.51 → 0.2.52

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 (134) hide show
  1. package/dist/commands/execute/any_command_executable.d.ts +7 -0
  2. package/dist/commands/execute/any_command_executable.js +81 -0
  3. package/dist/commands/execute/any_smelly_command_executable.d.ts +7 -0
  4. package/dist/commands/execute/any_smelly_command_executable.js +89 -0
  5. package/dist/commands/fs/sandboxed/chmod.d.ts +5 -0
  6. package/dist/commands/fs/sandboxed/chmod.js +51 -0
  7. package/dist/commands/fs/sandboxed/copy.d.ts +6 -0
  8. package/dist/commands/fs/sandboxed/copy.js +54 -0
  9. package/dist/commands/fs/sandboxed/make_directory.d.ts +5 -0
  10. package/dist/commands/fs/sandboxed/make_directory.js +51 -0
  11. package/dist/commands/fs/sandboxed/remove.d.ts +1 -0
  12. package/dist/commands/fs/sandboxed/remove.js +21 -0
  13. package/dist/commands/fs/sandboxed/write_file.d.ts +5 -0
  14. package/dist/commands/fs/sandboxed/write_file.js +51 -0
  15. package/dist/commands/fs/unrestricted/chmod.d.ts +2 -0
  16. package/dist/commands/fs/unrestricted/chmod.js +107 -0
  17. package/dist/commands/fs/unrestricted/copy.d.ts +2 -0
  18. package/dist/commands/fs/unrestricted/copy.js +90 -0
  19. package/dist/commands/fs/unrestricted/make_directory.d.ts +2 -0
  20. package/dist/commands/fs/unrestricted/make_directory.js +97 -0
  21. package/dist/commands/fs/unrestricted/remove.d.ts +2 -0
  22. package/dist/commands/fs/unrestricted/remove.js +84 -0
  23. package/dist/commands/fs/unrestricted/write_file.d.ts +2 -0
  24. package/dist/commands/fs/unrestricted/write_file.js +85 -0
  25. package/dist/commands/stream/log.d.ts +2 -0
  26. package/dist/commands/stream/log.js +56 -0
  27. package/dist/commands/stream/log_error.d.ts +2 -0
  28. package/dist/commands/stream/log_error.js +56 -0
  29. package/dist/commands/stream/write_to_stderr.d.ts +2 -0
  30. package/dist/commands/stream/write_to_stderr.js +17 -0
  31. package/dist/commands/stream/write_to_stdout.d.ts +2 -0
  32. package/dist/commands/stream/write_to_stdout.js +17 -0
  33. package/dist/execute_unrestricted/commands/command_executable.d.ts +7 -0
  34. package/dist/execute_unrestricted/commands/command_executable.js +81 -0
  35. package/dist/execute_unrestricted/commands/smelly_command_executable.d.ts +7 -0
  36. package/dist/execute_unrestricted/commands/smelly_command_executable.js +89 -0
  37. package/dist/execute_unrestricted/queries/query_executable.d.ts +7 -0
  38. package/dist/execute_unrestricted/queries/query_executable.js +94 -0
  39. package/dist/file_system sandboxed/commands/chmod.d.ts +5 -0
  40. package/dist/file_system sandboxed/commands/chmod.js +51 -0
  41. package/dist/file_system sandboxed/commands/copy.d.ts +6 -0
  42. package/dist/file_system sandboxed/commands/copy.js +54 -0
  43. package/dist/file_system sandboxed/commands/make_directory.d.ts +5 -0
  44. package/dist/file_system sandboxed/commands/make_directory.js +51 -0
  45. package/dist/file_system sandboxed/commands/remove.d.ts +1 -0
  46. package/dist/file_system sandboxed/commands/remove.js +21 -0
  47. package/dist/file_system sandboxed/commands/write_file.d.ts +5 -0
  48. package/dist/file_system sandboxed/commands/write_file.js +51 -0
  49. package/dist/file_system unrestricted/commands/chmod.d.ts +2 -0
  50. package/dist/file_system unrestricted/commands/chmod.js +107 -0
  51. package/dist/file_system unrestricted/commands/copy.d.ts +2 -0
  52. package/dist/file_system unrestricted/commands/copy.js +90 -0
  53. package/dist/file_system unrestricted/commands/make_directory.d.ts +2 -0
  54. package/dist/file_system unrestricted/commands/make_directory.js +97 -0
  55. package/dist/file_system unrestricted/commands/remove.d.ts +2 -0
  56. package/dist/file_system unrestricted/commands/remove.js +84 -0
  57. package/dist/file_system unrestricted/commands/write_file.d.ts +2 -0
  58. package/dist/file_system unrestricted/commands/write_file.js +85 -0
  59. package/dist/file_system unrestricted/queries/read_directory.d.ts +2 -0
  60. package/dist/file_system unrestricted/queries/read_directory.js +84 -0
  61. package/dist/file_system unrestricted/queries/read_file.d.ts +2 -0
  62. package/dist/file_system unrestricted/queries/read_file.js +79 -0
  63. package/dist/file_system unrestricted/queries/stat.d.ts +2 -0
  64. package/dist/file_system unrestricted/queries/stat.js +66 -0
  65. package/dist/file_system unrestricted/queries/stat_possible_node.d.ts +2 -0
  66. package/dist/file_system unrestricted/queries/stat_possible_node.js +70 -0
  67. package/dist/file_system_sandboxed/commands/chmod.d.ts +5 -0
  68. package/dist/file_system_sandboxed/commands/chmod.js +47 -0
  69. package/dist/file_system_sandboxed/commands/copy.d.ts +6 -0
  70. package/dist/file_system_sandboxed/commands/copy.js +50 -0
  71. package/dist/file_system_sandboxed/commands/make_directory.d.ts +5 -0
  72. package/dist/file_system_sandboxed/commands/make_directory.js +47 -0
  73. package/dist/file_system_sandboxed/commands/remove.d.ts +1 -0
  74. package/dist/file_system_sandboxed/commands/remove.js +21 -0
  75. package/dist/file_system_sandboxed/commands/write_file.d.ts +5 -0
  76. package/dist/file_system_sandboxed/commands/write_file.js +51 -0
  77. package/dist/file_system_sandboxed/queries/read_directory.d.ts +2 -0
  78. package/dist/file_system_sandboxed/queries/read_directory.js +84 -0
  79. package/dist/file_system_sandboxed/queries/read_file.d.ts +2 -0
  80. package/dist/file_system_sandboxed/queries/read_file.js +79 -0
  81. package/dist/file_system_sandboxed/queries/stat.d.ts +2 -0
  82. package/dist/file_system_sandboxed/queries/stat.js +66 -0
  83. package/dist/file_system_sandboxed/queries/stat_possible_node.d.ts +2 -0
  84. package/dist/file_system_sandboxed/queries/stat_possible_node.js +70 -0
  85. package/dist/file_system_unrestricted/commands/chmod.d.ts +2 -0
  86. package/dist/file_system_unrestricted/commands/chmod.js +107 -0
  87. package/dist/file_system_unrestricted/commands/copy.d.ts +2 -0
  88. package/dist/file_system_unrestricted/commands/copy.js +90 -0
  89. package/dist/file_system_unrestricted/commands/make_directory.d.ts +2 -0
  90. package/dist/file_system_unrestricted/commands/make_directory.js +97 -0
  91. package/dist/file_system_unrestricted/commands/remove.d.ts +2 -0
  92. package/dist/file_system_unrestricted/commands/remove.js +84 -0
  93. package/dist/file_system_unrestricted/commands/write_file.d.ts +2 -0
  94. package/dist/file_system_unrestricted/commands/write_file.js +85 -0
  95. package/dist/file_system_unrestricted/queries/read_directory.d.ts +2 -0
  96. package/dist/file_system_unrestricted/queries/read_directory.js +84 -0
  97. package/dist/file_system_unrestricted/queries/read_file.d.ts +2 -0
  98. package/dist/file_system_unrestricted/queries/read_file.js +79 -0
  99. package/dist/file_system_unrestricted/queries/stat.d.ts +2 -0
  100. package/dist/file_system_unrestricted/queries/stat.js +66 -0
  101. package/dist/file_system_unrestricted/queries/stat_possible_node.d.ts +2 -0
  102. package/dist/file_system_unrestricted/queries/stat_possible_node.js +70 -0
  103. package/dist/index.js +66 -37
  104. package/dist/queries/execute/any_query_executable.d.ts +7 -0
  105. package/dist/queries/execute/any_query_executable.js +94 -0
  106. package/dist/queries/execute_any_query_executable.js +2 -2
  107. package/dist/queries/fs/unrestricted/read_directory.d.ts +2 -0
  108. package/dist/queries/fs/unrestricted/read_directory.js +84 -0
  109. package/dist/queries/fs/unrestricted/read_file.d.ts +2 -0
  110. package/dist/queries/fs/unrestricted/read_file.js +79 -0
  111. package/dist/queries/fs/unrestricted/stat.d.ts +2 -0
  112. package/dist/queries/fs/unrestricted/stat.js +66 -0
  113. package/dist/queries/fs/unrestricted/stat_possible_node.d.ts +2 -0
  114. package/dist/queries/fs/unrestricted/stat_possible_node.js +70 -0
  115. package/dist/queries/read_directory.js +3 -3
  116. package/dist/queries/read_file.js +2 -2
  117. package/dist/queries/stat.js +2 -2
  118. package/dist/queries/stat_possible_node.js +2 -2
  119. package/dist/queries/stream/get_instream_data.d.ts +2 -0
  120. package/dist/queries/stream/get_instream_data.js +23 -0
  121. package/dist/signatures.d.ts +32 -20
  122. package/dist/stream/commands/log.d.ts +2 -0
  123. package/dist/stream/commands/log.js +56 -0
  124. package/dist/stream/commands/log_error.d.ts +2 -0
  125. package/dist/stream/commands/log_error.js +56 -0
  126. package/dist/stream/commands/write_to_stderr.d.ts +2 -0
  127. package/dist/stream/commands/write_to_stderr.js +17 -0
  128. package/dist/stream/commands/write_to_stdout.d.ts +2 -0
  129. package/dist/stream/commands/write_to_stdout.js +17 -0
  130. package/dist/stream/queries/get_instream_data.d.ts +2 -0
  131. package/dist/stream/queries/get_instream_data.js +23 -0
  132. package/dist/temp_create_command.d.ts +2 -0
  133. package/dist/temp_create_command.js +12 -0
  134. package/package.json +1 -1
@@ -0,0 +1,56 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ var __importDefault = (this && this.__importDefault) || function (mod) {
36
+ return (mod && mod.__esModule) ? mod : { "default": mod };
37
+ };
38
+ Object.defineProperty(exports, "__esModule", { value: true });
39
+ exports.$$ = void 0;
40
+ const _p_text_from_list_1 = __importDefault(require("pareto-core/dist/_p_text_from_list"));
41
+ const command_1 = __importDefault(require("pareto-core/dist/__internals/async/command"));
42
+ const command_promise_1 = __importDefault(require("pareto-core/dist/__internals/async/command_promise"));
43
+ //dependencies
44
+ const t_fp_to_list_of_characters = __importStar(require("pareto-fountain-pen/dist/implementation/manual/transformers/prose/list_of_characters"));
45
+ exports.$$ = (0, command_1.default)(($p) => {
46
+ return (0, command_promise_1.default)({
47
+ 'execute': (on_success) => {
48
+ process.stderr.write((0, _p_text_from_list_1.default)(t_fp_to_list_of_characters.Paragraph($p.message, {
49
+ 'indentation': ' ',
50
+ 'newline': '\n',
51
+ }), ($) => $));
52
+ on_success();
53
+ }
54
+ });
55
+ });
56
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9nX2Vycm9yLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3N0cmVhbS9jb21tYW5kcy9sb2dfZXJyb3IudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBQ0EsMkZBQWtFO0FBQ2xFLHlGQUFrRTtBQUNsRSx5R0FBa0Y7QUFLbEYsY0FBYztBQUNkLGlKQUFrSTtBQUVySCxRQUFBLEVBQUUsR0FBd0MsSUFBQSxpQkFBUyxFQUFDLENBQzdELEVBQUUsRUFDSixFQUFFO0lBQ0EsT0FBTyxJQUFBLHlCQUFpQixFQUFDO1FBQ3JCLFNBQVMsRUFBRSxDQUFDLFVBQVUsRUFBRSxFQUFFO1lBQ3RCLE9BQU8sQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUNoQixJQUFBLDJCQUFpQixFQUNiLDBCQUEwQixDQUFDLFNBQVMsQ0FDaEMsRUFBRSxDQUFDLE9BQU8sRUFDVjtnQkFDSSxhQUFhLEVBQUUsTUFBTTtnQkFDckIsU0FBUyxFQUFFLElBQUk7YUFDbEIsQ0FDSixFQUNELENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQ1gsQ0FDSixDQUFBO1lBQ0QsVUFBVSxFQUFFLENBQUE7UUFDaEIsQ0FBQztLQUNKLENBQUMsQ0FBQTtBQUNOLENBQUMsQ0FBQyxDQUFBIn0=
@@ -0,0 +1,2 @@
1
+ import * as resources from "pareto-resources/dist/interface/resources";
2
+ export declare const $$: resources.commands.stream_write_to_stderr;
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.$$ = void 0;
7
+ const command_1 = __importDefault(require("pareto-core/dist/__internals/async/command"));
8
+ const command_promise_1 = __importDefault(require("pareto-core/dist/__internals/async/command_promise"));
9
+ exports.$$ = (0, command_1.default)(($p) => {
10
+ return (0, command_promise_1.default)({
11
+ 'execute': (on_success) => {
12
+ process.stderr.write($p);
13
+ on_success();
14
+ }
15
+ });
16
+ });
17
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid3JpdGVfdG9fc3RkZXJyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3N0cmVhbS9jb21tYW5kcy93cml0ZV90b19zdGRlcnIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7O0FBRUEseUZBQWtFO0FBQ2xFLHlHQUFrRjtBQUtyRSxRQUFBLEVBQUUsR0FBOEMsSUFBQSxpQkFBUyxFQUFFLENBQ3BFLEVBQUUsRUFDSixFQUFFO0lBQ0EsT0FBTyxJQUFBLHlCQUFpQixFQUFDO1FBQ3JCLFNBQVMsRUFBRSxDQUFDLFVBQVUsRUFBRSxFQUFFO1lBQ3RCLE9BQU8sQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLEVBQUUsQ0FBQyxDQUFBO1lBQ3hCLFVBQVUsRUFBRSxDQUFBO1FBQ2hCLENBQUM7S0FDSixDQUFDLENBQUE7QUFDTixDQUFDLENBQUMsQ0FBQSJ9
@@ -0,0 +1,2 @@
1
+ import * as resources from "pareto-resources/dist/interface/resources";
2
+ export declare const $$: resources.commands.stream_write_to_stdout;
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.$$ = void 0;
7
+ const command_1 = __importDefault(require("pareto-core/dist/__internals/async/command"));
8
+ const command_promise_1 = __importDefault(require("pareto-core/dist/__internals/async/command_promise"));
9
+ exports.$$ = (0, command_1.default)(($p) => {
10
+ return (0, command_promise_1.default)({
11
+ 'execute': (on_success) => {
12
+ process.stdout.write($p);
13
+ on_success();
14
+ }
15
+ });
16
+ });
17
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid3JpdGVfdG9fc3Rkb3V0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vc3JjL3N0cmVhbS9jb21tYW5kcy93cml0ZV90b19zdGRvdXQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7O0FBRUEseUZBQWtFO0FBQ2xFLHlHQUFrRjtBQUtyRSxRQUFBLEVBQUUsR0FBOEMsSUFBQSxpQkFBUyxFQUFDLENBQ25FLEVBQUUsRUFDSixFQUFFO0lBQ0EsT0FBTyxJQUFBLHlCQUFpQixFQUFDO1FBQ3JCLFNBQVMsRUFBRSxDQUFDLFVBQVUsRUFBRSxFQUFFO1lBQ3RCLE9BQU8sQ0FBQyxNQUFNLENBQUMsS0FBSyxDQUFDLEVBQUUsQ0FBQyxDQUFBO1lBQ3hCLFVBQVUsRUFBRSxDQUFBO1FBQ2hCLENBQUM7S0FDSixDQUFDLENBQUE7QUFDTixDQUFDLENBQUMsQ0FBQSJ9
@@ -0,0 +1,2 @@
1
+ import * as resources from "pareto-resources/dist/interface/resources";
2
+ export declare const $$: resources.queries.stream_get_instream_data;
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.$$ = void 0;
7
+ const query_1 = __importDefault(require("pareto-core/dist/__internals/async/query"));
8
+ const __query_result_1 = __importDefault(require("pareto-core/dist/__internals/async/__query_result"));
9
+ exports.$$ = (0, query_1.default)(() => {
10
+ return (0, __query_result_1.default)((on_value) => {
11
+ const stdin = process.stdin;
12
+ let data = '';
13
+ stdin.setEncoding('utf8');
14
+ stdin.on('data', (chunk) => {
15
+ data += chunk;
16
+ });
17
+ stdin.on('end', () => {
18
+ on_value(data);
19
+ });
20
+ stdin.resume();
21
+ });
22
+ });
23
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0X2luc3RyZWFtX2RhdGEuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvc3RyZWFtL3F1ZXJpZXMvZ2V0X2luc3RyZWFtX2RhdGEudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7O0FBRUEscUZBQThEO0FBQzlELHVHQUE4RTtBQUtqRSxRQUFBLEVBQUUsR0FBK0MsSUFBQSxlQUFPLEVBQUMsR0FDcEUsRUFBRTtJQUNBLE9BQU8sSUFBQSx3QkFBYyxFQUFDLENBQUMsUUFBUSxFQUFFLEVBQUU7UUFFL0IsTUFBTSxLQUFLLEdBQUcsT0FBTyxDQUFDLEtBQUssQ0FBQztRQUM1QixJQUFJLElBQUksR0FBRyxFQUFFLENBQUM7UUFDZCxLQUFLLENBQUMsV0FBVyxDQUFDLE1BQU0sQ0FBQyxDQUFDO1FBRTFCLEtBQUssQ0FBQyxFQUFFLENBQUMsTUFBTSxFQUFFLENBQUMsS0FBYSxFQUFFLEVBQUU7WUFDL0IsSUFBSSxJQUFJLEtBQUssQ0FBQztRQUNsQixDQUFDLENBQUMsQ0FBQztRQUVILEtBQUssQ0FBQyxFQUFFLENBQUMsS0FBSyxFQUFFLEdBQUcsRUFBRTtZQUNqQixRQUFRLENBQUMsSUFBSSxDQUFDLENBQUM7UUFDbkIsQ0FBQyxDQUFDLENBQUM7UUFFSCxLQUFLLENBQUMsTUFBTSxFQUFFLENBQUM7SUFDbkIsQ0FBQyxDQUFDLENBQUE7QUFDTixDQUFDLENBQUMsQ0FBQSJ9
@@ -0,0 +1,2 @@
1
+ import * as _pi from 'pareto-core/dist/interface';
2
+ export declare const __create_command: <Error, Command_Parameters, Creator_Parameters>(command_creator: (parameters: Creator_Parameters) => ($p: Command_Parameters) => _pi.Command_Promise<Error>) => ($x: Creator_Parameters) => _pi.Command<Error, Command_Parameters>;
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.__create_command = void 0;
7
+ const command_1 = __importDefault(require("pareto-core/dist/__internals/async/command"));
8
+ const __create_command = (command_creator) => {
9
+ return ($x) => (0, command_1.default)(command_creator($x));
10
+ };
11
+ exports.__create_command = __create_command;
12
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGVtcF9jcmVhdGVfY29tbWFuZC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uL3NyYy90ZW1wX2NyZWF0ZV9jb21tYW5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7OztBQUNBLHlGQUFrRTtBQUczRCxNQUFNLGdCQUFnQixHQUFHLENBSzVCLGVBQTJHLEVBQ3pDLEVBQUU7SUFDcEUsT0FBTyxDQUFDLEVBQXNCLEVBQUUsRUFBRSxDQUFDLElBQUEsaUJBQVMsRUFDeEMsZUFBZSxDQUFDLEVBQUUsQ0FBQyxDQUN0QixDQUFBO0FBQ0wsQ0FBQyxDQUFBO0FBVlksUUFBQSxnQkFBZ0Isb0JBVTVCIn0=
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pareto-host-nodejs",
3
- "version": "0.2.51",
3
+ "version": "0.2.52",
4
4
  "license": "Apache-2.0",
5
5
  "author": "Corno",
6
6
  "description": "the exupery core package for creating a main function in a nodejs host environment",