exupery-core-bin 0.3.1 → 0.3.3

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 +2 -2
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -11,10 +11,10 @@ export type Resources = null;
11
11
  * Runs a program main function, passing command line arguments (excluding
12
12
  * `node` and the script name)
13
13
  */
14
- export declare const run_guaranteed_main_procedure: (main: _easync.Guaranteed_Procedure_Initializer<Parameters, Resources>) => void;
14
+ export declare const run_guaranteed_main_procedure: (main: _easync.Guaranteed_Procedure<Parameters, Resources>) => void;
15
15
  /**
16
16
  * Runs a program main function, passing command line arguments (excluding
17
17
  * `node` and the script name), and setting the process exit code to the
18
18
  * returned value when the async value completes.
19
19
  */
20
- export declare const run_unguaranteed_main_procedure: (main: _easync.Unguaranteed_Procedure_Initializer<Parameters, Resources, Error>) => void;
20
+ export declare const run_unguaranteed_main_procedure: (main: _easync.Unguaranteed_Procedure<Parameters, Error, Resources>) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exupery-core-bin",
3
- "version": "0.3.1",
3
+ "version": "0.3.3",
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.1",
30
+ "exupery-core-async": "^0.3.3",
31
31
  "exupery-core-internals": "^0.3.0"
32
32
  }
33
33
  }