exupery-core-bin 0.3.16 → 0.3.17
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/procedures/copy.js +1 -1
- package/dist/algorithms/procedures/execute_any_procedure_executable.js +1 -1
- package/dist/algorithms/procedures/execute_any_smelly_procedure_executable.js +1 -1
- package/dist/algorithms/procedures/log.js +1 -1
- package/dist/algorithms/procedures/log_error.js +1 -1
- package/dist/algorithms/procedures/make_directory.js +1 -1
- package/dist/algorithms/procedures/remove.js +1 -1
- package/dist/algorithms/procedures/write_file.js +1 -1
- package/dist/algorithms/procedures/write_to_stderr.js +1 -1
- package/dist/algorithms/procedures/write_to_stdout.js +1 -1
- package/package.json +2 -2
|
@@ -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 fs_1 = require("fs");
|
|
30
|
-
exports.$$ = _easync.
|
|
30
|
+
exports.$$ = _easync.__create_procedure_primed_with_resources(($p) => {
|
|
31
31
|
const __possibly_escape_filename = (path, escape) => {
|
|
32
32
|
if (escape) {
|
|
33
33
|
return path.replace(/ /g, '_');
|
|
@@ -32,7 +32,7 @@ const node_child_process_1 = require("node:child_process");
|
|
|
32
32
|
* The executable being executed is assumed to only cause side effects
|
|
33
33
|
* and not return any meaningful data, std::out is therefor ignored
|
|
34
34
|
*/
|
|
35
|
-
exports.$$ = _easync.
|
|
35
|
+
exports.$$ = _easync.__create_procedure_primed_with_resources(($p) => {
|
|
36
36
|
const args = $p.args.__get_raw_copy();
|
|
37
37
|
return _easync.__create_procedure_promise({
|
|
38
38
|
'execute': (on_success, on_exception) => {
|
|
@@ -33,7 +33,7 @@ const node_child_process_1 = require("node:child_process");
|
|
|
33
33
|
* The executable being executed is assumed to only cause side effects
|
|
34
34
|
* and not return any meaningful data, std::out is therefor ignored
|
|
35
35
|
*/
|
|
36
|
-
exports.$$ = _easync.
|
|
36
|
+
exports.$$ = _easync.__create_procedure_primed_with_resources(($p) => {
|
|
37
37
|
const args = $p.args.__get_raw_copy();
|
|
38
38
|
return _easync.__create_procedure_promise({
|
|
39
39
|
'execute': (on_success, on_exception) => {
|
|
@@ -25,7 +25,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
exports.$$ = void 0;
|
|
27
27
|
const _easync = __importStar(require("exupery-core-async"));
|
|
28
|
-
exports.$$ = _easync.
|
|
28
|
+
exports.$$ = _easync.__create_procedure_primed_with_resources(($p) => {
|
|
29
29
|
return _easync.__create_procedure_promise({
|
|
30
30
|
'execute': (on_success) => {
|
|
31
31
|
$p.lines.__for_each(($) => {
|
|
@@ -25,7 +25,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
exports.$$ = void 0;
|
|
27
27
|
const _easync = __importStar(require("exupery-core-async"));
|
|
28
|
-
exports.$$ = _easync.
|
|
28
|
+
exports.$$ = _easync.__create_procedure_primed_with_resources(($p) => {
|
|
29
29
|
return _easync.__create_procedure_promise({
|
|
30
30
|
'execute': (on_success) => {
|
|
31
31
|
$p.lines.__for_each(($) => {
|
|
@@ -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 fs_1 = require("fs");
|
|
30
|
-
exports.$$ = _easync.
|
|
30
|
+
exports.$$ = _easync.__create_procedure_primed_with_resources(($p) => {
|
|
31
31
|
const __possibly_escape_filename = (path, escape) => {
|
|
32
32
|
if (escape) {
|
|
33
33
|
return path.replace(/ /g, '_');
|
|
@@ -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 fs_1 = require("fs");
|
|
30
|
-
exports.$$ = _easync.
|
|
30
|
+
exports.$$ = _easync.__create_procedure_primed_with_resources(($p) => {
|
|
31
31
|
const __possibly_escape_filename = (path, escape) => {
|
|
32
32
|
if (escape) {
|
|
33
33
|
return path.replace(/ /g, '_');
|
|
@@ -28,7 +28,7 @@ const _easync = __importStar(require("exupery-core-async"));
|
|
|
28
28
|
const _ei = __importStar(require("exupery-core-internals"));
|
|
29
29
|
const fs_1 = require("fs");
|
|
30
30
|
const path_1 = require("path");
|
|
31
|
-
exports.$$ = _easync.
|
|
31
|
+
exports.$$ = _easync.__create_procedure_primed_with_resources(($p) => {
|
|
32
32
|
return _easync.__create_procedure_promise({
|
|
33
33
|
'execute': (on_success, on_exception) => {
|
|
34
34
|
const __possibly_escape_filename = (path, escape) => {
|
|
@@ -25,7 +25,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
exports.$$ = void 0;
|
|
27
27
|
const _easync = __importStar(require("exupery-core-async"));
|
|
28
|
-
exports.$$ = _easync.
|
|
28
|
+
exports.$$ = _easync.__create_procedure_primed_with_resources(($p) => {
|
|
29
29
|
return _easync.__create_procedure_promise({
|
|
30
30
|
'execute': (on_success) => {
|
|
31
31
|
process.stderr.write($p);
|
|
@@ -25,7 +25,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
exports.$$ = void 0;
|
|
27
27
|
const _easync = __importStar(require("exupery-core-async"));
|
|
28
|
-
exports.$$ = _easync.
|
|
28
|
+
exports.$$ = _easync.__create_procedure_primed_with_resources(($p) => {
|
|
29
29
|
return _easync.__create_procedure_promise({
|
|
30
30
|
'execute': (on_success) => {
|
|
31
31
|
process.stdout.write($p);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "exupery-core-bin",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.17",
|
|
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,7 +27,7 @@
|
|
|
27
27
|
"url": "git+https://github.com/corno/exupery-core.git"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"exupery-core-async": "^0.3.
|
|
30
|
+
"exupery-core-async": "^0.3.18",
|
|
31
31
|
"exupery-core-internals": "^0.3.1",
|
|
32
32
|
"exupery-resources": "^0.3.6"
|
|
33
33
|
}
|