@quantish/agent 0.1.48 → 0.1.49
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 +4 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5667,7 +5667,10 @@ Stopped ${count} background process${count > 1 ? "es" : ""}.`);
|
|
|
5667
5667
|
}
|
|
5668
5668
|
|
|
5669
5669
|
// src/index.ts
|
|
5670
|
-
|
|
5670
|
+
import { createRequire } from "module";
|
|
5671
|
+
var require2 = createRequire(import.meta.url);
|
|
5672
|
+
var packageJson = require2("../package.json");
|
|
5673
|
+
var VERSION = packageJson.version;
|
|
5671
5674
|
function cleanup() {
|
|
5672
5675
|
if (processManager.hasRunning()) {
|
|
5673
5676
|
const count = processManager.runningCount();
|