repowise 0.1.46 → 0.1.47
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/bin/repowise.js +6 -2
- package/package.json +1 -1
package/dist/bin/repowise.js
CHANGED
|
@@ -3025,8 +3025,12 @@ program.command("config").description("Manage configuration").action(async () =>
|
|
|
3025
3025
|
await config2();
|
|
3026
3026
|
});
|
|
3027
3027
|
if (process.argv[2] === "__listener") {
|
|
3028
|
-
|
|
3029
|
-
|
|
3028
|
+
Promise.resolve().then(() => (init_main(), main_exports)).then(
|
|
3029
|
+
({ startListener: startListener2 }) => startListener2().catch((err) => {
|
|
3030
|
+
console.error("Listener fatal error:", err);
|
|
3031
|
+
process.exitCode = 1;
|
|
3032
|
+
})
|
|
3033
|
+
);
|
|
3030
3034
|
} else {
|
|
3031
3035
|
program.parse();
|
|
3032
3036
|
}
|