exupery-core-bin 0.3.41 → 0.3.43
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.
- package/dist/algorithms/commands/copy.d.ts +2 -0
- package/dist/algorithms/{procedures → commands}/copy.js +3 -2
- package/dist/algorithms/commands/execute_any_procedure_executable.d.ts +7 -0
- package/dist/algorithms/{procedures → commands}/execute_any_procedure_executable.js +1 -0
- package/dist/algorithms/commands/execute_any_smelly_procedure_executable.d.ts +7 -0
- package/dist/algorithms/{procedures → commands}/execute_any_smelly_procedure_executable.js +2 -1
- package/dist/algorithms/commands/log.d.ts +2 -0
- package/dist/algorithms/commands/log_error.d.ts +2 -0
- package/dist/algorithms/commands/make_directory.d.ts +2 -0
- package/dist/algorithms/{procedures → commands}/make_directory.js +3 -2
- package/dist/algorithms/commands/remove.d.ts +2 -0
- package/dist/algorithms/{procedures → commands}/remove.js +3 -2
- package/dist/algorithms/commands/write_file.d.ts +2 -0
- package/dist/algorithms/{procedures → commands}/write_file.js +4 -3
- package/dist/algorithms/commands/write_to_stderr.d.ts +2 -0
- package/dist/algorithms/commands/write_to_stdout.d.ts +2 -0
- package/dist/algorithms/queries/execute_any_query_executable.d.ts +2 -3
- package/dist/algorithms/queries/execute_any_query_executable.js +1 -0
- package/dist/algorithms/queries/get_instream_data.d.ts +2 -3
- package/dist/algorithms/queries/read_directory.d.ts +2 -3
- package/dist/algorithms/queries/read_directory.js +4 -3
- package/dist/algorithms/queries/read_file.d.ts +2 -3
- package/dist/algorithms/queries/read_file.js +3 -2
- package/dist/algorithms/queries/stat.d.ts +2 -3
- package/dist/algorithms/queries/stat.js +3 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +10 -10
- package/package.json +4 -4
- package/dist/algorithms/procedures/copy.d.ts +0 -3
- package/dist/algorithms/procedures/execute_any_procedure_executable.d.ts +0 -8
- package/dist/algorithms/procedures/execute_any_smelly_procedure_executable.d.ts +0 -8
- package/dist/algorithms/procedures/log.d.ts +0 -3
- package/dist/algorithms/procedures/log_error.d.ts +0 -3
- package/dist/algorithms/procedures/make_directory.d.ts +0 -3
- package/dist/algorithms/procedures/remove.d.ts +0 -3
- package/dist/algorithms/procedures/write_file.d.ts +0 -3
- package/dist/algorithms/procedures/write_to_stderr.d.ts +0 -3
- package/dist/algorithms/procedures/write_to_stdout.d.ts +0 -3
- package/dist/algorithms/queries/execute_query_executable_and_catch.d.ts +0 -1
- package/dist/algorithms/queries/execute_query_executable_and_catch.js +0 -47
- /package/dist/algorithms/{procedures → commands}/log.js +0 -0
- /package/dist/algorithms/{procedures → commands}/log_error.js +0 -0
- /package/dist/algorithms/{procedures → commands}/write_to_stderr.js +0 -0
- /package/dist/algorithms/{procedures → commands}/write_to_stdout.js +0 -0
|
@@ -26,8 +26,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
26
26
|
exports.$$ = void 0;
|
|
27
27
|
const _easync = __importStar(require("exupery-core-async"));
|
|
28
28
|
const _ei = __importStar(require("exupery-core-internals"));
|
|
29
|
+
//dependencies
|
|
29
30
|
const fs_1 = require("fs");
|
|
30
|
-
const
|
|
31
|
+
const s_path = __importStar(require("exupery-resources/dist/implementation/serializers/schemas/path"));
|
|
31
32
|
exports.$$ = _easync.__create_resource_command(($p) => {
|
|
32
33
|
return _easync.__create_command_promise({
|
|
33
34
|
'execute': (on_success, on_error) => {
|
|
@@ -35,7 +36,7 @@ exports.$$ = _easync.__create_resource_command(($p) => {
|
|
|
35
36
|
$p.options.recursive.map(($) => { options.recursive = $; });
|
|
36
37
|
$p.options.force.map(($) => { options.force = $; });
|
|
37
38
|
$p.options.errorOnExist.map(($) => { options.errorOnExist = $; });
|
|
38
|
-
(0, fs_1.cp)(
|
|
39
|
+
(0, fs_1.cp)(s_path.Node_Path($p.source), s_path.Node_Path($p.target), options, (err) => {
|
|
39
40
|
if (err) {
|
|
40
41
|
on_error(_ei.block(() => {
|
|
41
42
|
if (err.code === 'ENOENT') {
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as resources from "exupery-resources/dist/interface/resources";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
* The executable being executed is assumed to only cause side effects
|
|
5
|
+
* and not return any meaningful data, std::out is therefor ignored
|
|
6
|
+
*/
|
|
7
|
+
export declare const $$: resources.commands.execute_any_command_executable;
|
|
@@ -26,6 +26,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
26
26
|
exports.$$ = void 0;
|
|
27
27
|
const _easync = __importStar(require("exupery-core-async"));
|
|
28
28
|
const _ei = __importStar(require("exupery-core-internals"));
|
|
29
|
+
//dependencies
|
|
29
30
|
const node_child_process_1 = require("node:child_process");
|
|
30
31
|
/**
|
|
31
32
|
*
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as resources from "exupery-resources/dist/interface/resources";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
* The executable being executed is assumed to only cause side effects
|
|
5
|
+
* and not return any meaningful data, std::out is therefor ignored
|
|
6
|
+
*/
|
|
7
|
+
export declare const $$: resources.commands.execute_any_smelly_command_executable;
|
|
@@ -26,8 +26,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
26
26
|
exports.$$ = void 0;
|
|
27
27
|
const _easync = __importStar(require("exupery-core-async"));
|
|
28
28
|
const _ei = __importStar(require("exupery-core-internals"));
|
|
29
|
+
//dependencies
|
|
29
30
|
const node_child_process_1 = require("node:child_process");
|
|
30
|
-
// import { Signature } from "exupery-resources/dist/interface/algorithms/
|
|
31
|
+
// import { Signature } from "exupery-resources/dist/interface/algorithms/commands/execute_smelly_procedure_executable"
|
|
31
32
|
/**
|
|
32
33
|
*
|
|
33
34
|
* The executable being executed is assumed to only cause side effects
|
|
@@ -26,12 +26,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
26
26
|
exports.$$ = void 0;
|
|
27
27
|
const _easync = __importStar(require("exupery-core-async"));
|
|
28
28
|
const _ei = __importStar(require("exupery-core-internals"));
|
|
29
|
+
//dependencies
|
|
29
30
|
const fs_1 = require("fs");
|
|
30
|
-
const
|
|
31
|
+
const s_path = __importStar(require("exupery-resources/dist/implementation/serializers/schemas/path"));
|
|
31
32
|
exports.$$ = _easync.__create_resource_command(($p) => {
|
|
32
33
|
return _easync.__create_command_promise({
|
|
33
34
|
'execute': (on_success, on_error) => {
|
|
34
|
-
(0, fs_1.mkdir)(
|
|
35
|
+
(0, fs_1.mkdir)(s_path.Node_Path($p), {
|
|
35
36
|
'recursive': true,
|
|
36
37
|
}, (err, path) => {
|
|
37
38
|
if (err) {
|
|
@@ -26,12 +26,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
26
26
|
exports.$$ = void 0;
|
|
27
27
|
const _easync = __importStar(require("exupery-core-async"));
|
|
28
28
|
const _ei = __importStar(require("exupery-core-internals"));
|
|
29
|
+
//dependencies
|
|
29
30
|
const fs_1 = require("fs");
|
|
30
|
-
const
|
|
31
|
+
const s_path = __importStar(require("exupery-resources/dist/implementation/serializers/schemas/path"));
|
|
31
32
|
exports.$$ = _easync.__create_resource_command(($p) => {
|
|
32
33
|
return _easync.__create_command_promise({
|
|
33
34
|
'execute': (on_success, on_error) => {
|
|
34
|
-
(0, fs_1.rm)(
|
|
35
|
+
(0, fs_1.rm)(s_path.Node_Path($p.path), {
|
|
35
36
|
'recursive': true,
|
|
36
37
|
}, (err) => {
|
|
37
38
|
if (err) {
|
|
@@ -26,12 +26,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
26
26
|
exports.$$ = void 0;
|
|
27
27
|
const _easync = __importStar(require("exupery-core-async"));
|
|
28
28
|
const _ei = __importStar(require("exupery-core-internals"));
|
|
29
|
+
//dependencies
|
|
29
30
|
const fs_1 = require("fs");
|
|
30
|
-
const
|
|
31
|
+
const s_path = __importStar(require("exupery-resources/dist/implementation/serializers/schemas/path"));
|
|
31
32
|
exports.$$ = _easync.__create_resource_command(($p) => {
|
|
32
33
|
return _easync.__create_command_promise({
|
|
33
34
|
'execute': (on_success, on_error) => {
|
|
34
|
-
(0, fs_1.mkdir)(
|
|
35
|
+
(0, fs_1.mkdir)(s_path.Context_Path($p.path.context), {
|
|
35
36
|
'recursive': true
|
|
36
37
|
}, (err, path) => {
|
|
37
38
|
if (err) {
|
|
@@ -43,7 +44,7 @@ exports.$$ = _easync.__create_resource_command(($p) => {
|
|
|
43
44
|
}));
|
|
44
45
|
return;
|
|
45
46
|
}
|
|
46
|
-
(0, fs_1.writeFile)(
|
|
47
|
+
(0, fs_1.writeFile)(s_path.Node_Path($p.path), $p.data, (err) => {
|
|
47
48
|
if (err) {
|
|
48
49
|
on_error(_ei.block(() => {
|
|
49
50
|
if (err.code === 'EACCES' || err.code === 'EPERM') {
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as d from "exupery-resources/dist/interface/generated/pareto/schemas/execute_any_query_executable/data_types/target";
|
|
1
|
+
import * as resources from "exupery-resources/dist/interface/resources";
|
|
3
2
|
/**
|
|
4
3
|
*
|
|
5
4
|
* The executable being executed is assumed to be side effect free
|
|
6
5
|
* There is no way to give guarantees about that though
|
|
7
6
|
*/
|
|
8
|
-
export declare const $$:
|
|
7
|
+
export declare const $$: resources.queries.execute_any_query_executable;
|
|
@@ -26,6 +26,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
26
26
|
exports.$$ = void 0;
|
|
27
27
|
const _easync = __importStar(require("exupery-core-async"));
|
|
28
28
|
const _ei = __importStar(require("exupery-core-internals"));
|
|
29
|
+
//dependencies
|
|
29
30
|
const node_child_process_1 = require("node:child_process");
|
|
30
31
|
/**
|
|
31
32
|
*
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
|
|
3
|
-
export declare const $$: _et.Query<d.Result, null, null>;
|
|
1
|
+
import * as resources from "exupery-resources/dist/interface/resources";
|
|
2
|
+
export declare const $$: resources.queries.get_instream_data;
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
|
|
3
|
-
export declare const $$: _et.Query<d.Result, d.Error, d.Parameters>;
|
|
1
|
+
import * as resources from "exupery-resources/dist/interface/resources";
|
|
2
|
+
export declare const $$: resources.queries.read_directory;
|
|
@@ -26,12 +26,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
26
26
|
exports.$$ = void 0;
|
|
27
27
|
const _easync = __importStar(require("exupery-core-async"));
|
|
28
28
|
const _ei = __importStar(require("exupery-core-internals"));
|
|
29
|
+
//dependencies
|
|
29
30
|
const fs_1 = require("fs");
|
|
30
|
-
const
|
|
31
|
-
const t_path_to_path = __importStar(require("exupery-resources/dist/implementation/transformers/path/path"));
|
|
31
|
+
const s_path = __importStar(require("exupery-resources/dist/implementation/serializers/schemas/path"));
|
|
32
|
+
const t_path_to_path = __importStar(require("exupery-resources/dist/implementation/transformers/schemas/path/path"));
|
|
32
33
|
exports.$$ = _easync.__create_query(($p) => {
|
|
33
34
|
return _ei.__create_query_result((on_value, on_error) => {
|
|
34
|
-
(0, fs_1.readdir)(
|
|
35
|
+
(0, fs_1.readdir)(s_path.Node_Path($p.path), {
|
|
35
36
|
'encoding': 'utf-8',
|
|
36
37
|
'withFileTypes': true,
|
|
37
38
|
}, (err, files) => {
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
|
|
3
|
-
export declare const $$: _et.Query<d.Result, d.Error, d.Parameters>;
|
|
1
|
+
import * as resources from "exupery-resources/dist/interface/resources";
|
|
2
|
+
export declare const $$: resources.queries.read_file;
|
|
@@ -26,11 +26,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
26
26
|
exports.$$ = void 0;
|
|
27
27
|
const _easync = __importStar(require("exupery-core-async"));
|
|
28
28
|
const _ei = __importStar(require("exupery-core-internals"));
|
|
29
|
-
|
|
29
|
+
//dependencies
|
|
30
|
+
const s_path = __importStar(require("exupery-resources/dist/implementation/serializers/schemas/path"));
|
|
30
31
|
const fs_1 = require("fs");
|
|
31
32
|
exports.$$ = _easync.__create_query(($p) => {
|
|
32
33
|
return _ei.__create_query_result((on_value, on_error) => {
|
|
33
|
-
(0, fs_1.readFile)(
|
|
34
|
+
(0, fs_1.readFile)(s_path.Node_Path($p), { 'encoding': 'utf-8' }, (err, data) => {
|
|
34
35
|
if (err) {
|
|
35
36
|
on_error(_ei.block(() => {
|
|
36
37
|
if (err.code === 'ENOENT') {
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
|
|
3
|
-
export declare const $$: _et.Query<d.Result, d.Error, d.Parameters>;
|
|
1
|
+
import * as resources from "exupery-resources/dist/interface/resources";
|
|
2
|
+
export declare const $$: resources.queries.stat;
|
|
@@ -26,11 +26,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
26
26
|
exports.$$ = void 0;
|
|
27
27
|
const _easync = __importStar(require("exupery-core-async"));
|
|
28
28
|
const _ei = __importStar(require("exupery-core-internals"));
|
|
29
|
+
//dependencies
|
|
29
30
|
const fs_1 = require("fs");
|
|
30
|
-
const
|
|
31
|
+
const s_path = __importStar(require("exupery-resources/dist/implementation/serializers/schemas/path"));
|
|
31
32
|
exports.$$ = _easync.__create_query(($p) => {
|
|
32
33
|
return _ei.__create_query_result((on_value, on_error) => {
|
|
33
|
-
(0, fs_1.stat)(
|
|
34
|
+
(0, fs_1.stat)(s_path.Node_Path($p), (err, stats) => {
|
|
34
35
|
if (err) {
|
|
35
36
|
on_error(_ei.block(() => {
|
|
36
37
|
if (err.code === 'ENOENT') {
|
package/dist/index.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ import * as d_remove from "exupery-resources/dist/interface/generated/pareto/sch
|
|
|
13
13
|
import * as d_write_file from "exupery-resources/dist/interface/generated/pareto/schemas/write_file/data_types/source";
|
|
14
14
|
import * as d_write_to_stderr from "exupery-resources/dist/interface/generated/pareto/schemas/write_to_stderr/data_types/target";
|
|
15
15
|
import * as d_write_to_stdout from "exupery-resources/dist/interface/generated/pareto/schemas/write_to_stdout/data_types/target";
|
|
16
|
-
import * as d_main from "exupery-resources/dist/interface/temp_main";
|
|
16
|
+
import * as d_main from "exupery-resources/dist/interface/to_be_generated/temp_main";
|
|
17
17
|
type temp_instream_parameters = null;
|
|
18
18
|
export type Available_Standard_Resources = {
|
|
19
19
|
'commands': {
|
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/
|
|
29
|
-
const execute_any_procedure_executable_1 = require("./algorithms/
|
|
30
|
-
const execute_any_smelly_procedure_executable_1 = require("./algorithms/
|
|
31
|
-
const log_1 = require("./algorithms/
|
|
32
|
-
const log_error_1 = require("./algorithms/
|
|
33
|
-
const make_directory_1 = require("./algorithms/
|
|
34
|
-
const remove_1 = require("./algorithms/
|
|
35
|
-
const write_file_1 = require("./algorithms/
|
|
36
|
-
const write_to_stderr_1 = require("./algorithms/
|
|
37
|
-
const write_to_stdout_1 = require("./algorithms/
|
|
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.
|
|
3
|
+
"version": "0.3.43",
|
|
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.
|
|
31
|
-
"exupery-core-internals": "^0.3.
|
|
32
|
-
"exupery-resources": "^0.3.
|
|
30
|
+
"exupery-core-async": "^0.3.78",
|
|
31
|
+
"exupery-core-internals": "^0.3.19",
|
|
32
|
+
"exupery-resources": "^0.3.47"
|
|
33
33
|
}
|
|
34
34
|
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import * as _et from 'exupery-core-types';
|
|
2
|
-
import * as d from "exupery-resources/dist/interface/generated/pareto/schemas/execute_any_procedure_executable/data_types/target";
|
|
3
|
-
/**
|
|
4
|
-
*
|
|
5
|
-
* The executable being executed is assumed to only cause side effects
|
|
6
|
-
* and not return any meaningful data, std::out is therefor ignored
|
|
7
|
-
*/
|
|
8
|
-
export declare const $$: _et.Command<d.Error, d.Parameters>;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import * as _et from 'exupery-core-types';
|
|
2
|
-
import * as d from "exupery-resources/dist/interface/generated/pareto/schemas/execute_any_smelly_procedure_executable/data_types/target";
|
|
3
|
-
/**
|
|
4
|
-
*
|
|
5
|
-
* The executable being executed is assumed to only cause side effects
|
|
6
|
-
* and not return any meaningful data, std::out is therefor ignored
|
|
7
|
-
*/
|
|
8
|
-
export declare const $$: _et.Command<d.Error, d.Parameters>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const x = 42;
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.x = void 0;
|
|
4
|
-
// import { Signature } from "exupery-resources/dist/interface/algorithms/queries/execute_query_executable_and_catch"
|
|
5
|
-
exports.x = 42;
|
|
6
|
-
// /**
|
|
7
|
-
// *
|
|
8
|
-
// * The executable being executed is assumed to be side effect free
|
|
9
|
-
// * There is no way to give guarantees about that though
|
|
10
|
-
// */
|
|
11
|
-
// export const $$: _et.Query<d.Parameters, d.Result, null> = _easync.__create_query((
|
|
12
|
-
// $p
|
|
13
|
-
// ) => {
|
|
14
|
-
// const args = $p.args.__get_raw_copy()
|
|
15
|
-
// return _easync.__create_query_promise({
|
|
16
|
-
// 'execute': (on_result) => {
|
|
17
|
-
// const child = spawn($p.program, args, {
|
|
18
|
-
// shell: false, // ✅ no implicit parsing
|
|
19
|
-
// })
|
|
20
|
-
// let stdoutData = ""
|
|
21
|
-
// let stderrData = ""
|
|
22
|
-
// child.stdout.on("data", chunk => {
|
|
23
|
-
// stdoutData += chunk.toString("utf8")
|
|
24
|
-
// })
|
|
25
|
-
// child.stderr.on("data", chunk => {
|
|
26
|
-
// stderrData += chunk.toString("utf8")
|
|
27
|
-
// })
|
|
28
|
-
// child.on("error", err => {
|
|
29
|
-
// on_result(['error', ['failed to spawn', {
|
|
30
|
-
// message: err instanceof Error ? err.message : `${err}`
|
|
31
|
-
// }]])
|
|
32
|
-
// })
|
|
33
|
-
// child.on("close", exitCode => {
|
|
34
|
-
// if (exitCode === 0) {
|
|
35
|
-
// on_result(['success', {
|
|
36
|
-
// stdout: stdoutData,
|
|
37
|
-
// }])
|
|
38
|
-
// } else {
|
|
39
|
-
// on_result(['error', ['non zero exit code', {
|
|
40
|
-
// 'exit code': exitCode === null ? _ei.not_set() : _ei.set(exitCode),
|
|
41
|
-
// 'stderr': stderrData,
|
|
42
|
-
// }]])
|
|
43
|
-
// }
|
|
44
|
-
// })
|
|
45
|
-
// }
|
|
46
|
-
// })
|
|
47
|
-
// })
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|