exupery-core-bin 0.1.2 → 0.1.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.
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -31,7 +31,7 @@ const _ei = __importStar(require("exupery-core-internals"));
|
|
|
31
31
|
* returned value when the async value completes.
|
|
32
32
|
*/
|
|
33
33
|
const run_program = (main) => {
|
|
34
|
-
main(_ei.array_literal(process.argv.slice(2))).
|
|
34
|
+
main(_ei.array_literal(process.argv.slice(2))).__start(($) => {
|
|
35
35
|
process.exitCode = $;
|
|
36
36
|
});
|
|
37
37
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "exupery-core-bin",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.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,6 +27,6 @@
|
|
|
27
27
|
"url": "git+https://github.com/corno/exupery-core.git"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"exupery-core-internals": "^0.1.
|
|
30
|
+
"exupery-core-internals": "^0.1.3"
|
|
31
31
|
}
|
|
32
32
|
}
|