exupery-core-bin 0.1.17 → 0.1.18

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 (2) hide show
  1. package/dist/index.d.ts +4 -4
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -1,21 +1,21 @@
1
1
  import * as _et from 'exupery-core-types';
2
2
  import * as _easync from 'exupery-core-async';
3
- export type Initialize_Guaranteed_Main = _easync.Initialize_Guaranteed_Procedure<Parameters>;
3
+ export type Guaranteed_Main_Initializer = _easync.Guaranteed_Procedure_Initializer<Parameters>;
4
4
  /**
5
5
  * Runs a program main function, passing command line arguments (excluding
6
6
  * `node` and the script name)
7
7
  */
8
- export declare const run_guaranteed_main_procedure: (main: Initialize_Guaranteed_Main) => void;
8
+ export declare const run_guaranteed_main_procedure: (main: Guaranteed_Main_Initializer) => void;
9
9
  export type Parameters = {
10
10
  'arguments': _et.Array<string>;
11
11
  };
12
12
  export type Error = {
13
13
  'exit code': number;
14
14
  };
15
- export type Initialize_Unguaranteed_Main = _easync.Initialize_Unguaranteed_Procedure<Parameters, Error>;
15
+ export type Unguaranteed_Main_Initializer = _easync.Unguaranteed_Procedure_Initializer<Parameters, Error>;
16
16
  /**
17
17
  * Runs a program main function, passing command line arguments (excluding
18
18
  * `node` and the script name), and setting the process exit code to the
19
19
  * returned value when the async value completes.
20
20
  */
21
- export declare const run_unguaranteed_main_procedure: (main: Initialize_Unguaranteed_Main) => void;
21
+ export declare const run_unguaranteed_main_procedure: (main: Unguaranteed_Main_Initializer) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exupery-core-bin",
3
- "version": "0.1.17",
3
+ "version": "0.1.18",
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.1.38",
30
+ "exupery-core-async": "^0.1.39",
31
31
  "exupery-core-internals": "^0.1.11"
32
32
  }
33
33
  }