@costrict/csc 4.2.8-beta1 → 4.2.8
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/cli.js +975 -581
- package/dist/services/rawDump/batchWorker.js +4 -3
- package/package.json +1 -1
|
@@ -508,8 +508,8 @@ async function saveCoStrictCredentials(credentials) {
|
|
|
508
508
|
import { createRequire } from "module";
|
|
509
509
|
function getVersion() {
|
|
510
510
|
try {
|
|
511
|
-
if (typeof MACRO !== "undefined" && "4.2.8
|
|
512
|
-
return "4.2.8
|
|
511
|
+
if (typeof MACRO !== "undefined" && "4.2.8")
|
|
512
|
+
return "4.2.8";
|
|
513
513
|
} catch {}
|
|
514
514
|
try {
|
|
515
515
|
const require2 = createRequire(import.meta.url);
|
|
@@ -2721,6 +2721,7 @@ async function isParentAlive() {
|
|
|
2721
2721
|
}
|
|
2722
2722
|
var stateLoaded = false;
|
|
2723
2723
|
function startBatchWorker() {
|
|
2724
|
+
process.title = "csc_batch_worker";
|
|
2724
2725
|
log7.info("batch worker started");
|
|
2725
2726
|
loadAllState().then(() => {
|
|
2726
2727
|
stateLoaded = true;
|
|
@@ -2789,5 +2790,5 @@ export {
|
|
|
2789
2790
|
startBatchWorker
|
|
2790
2791
|
};
|
|
2791
2792
|
|
|
2792
|
-
//# debugId=
|
|
2793
|
+
//# debugId=DEF8126068895F0964756E2164756E21
|
|
2793
2794
|
//# sourceMappingURL=batchWorker.js.map
|