pandev 2.4.3 → 2.4.4
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/bin/pandev.js +8 -1
- package/package.json +4 -4
package/bin/pandev.js
CHANGED
|
@@ -43,7 +43,14 @@ try {
|
|
|
43
43
|
|
|
44
44
|
const r = spawnSync(bin, args, {
|
|
45
45
|
stdio: 'inherit',
|
|
46
|
-
env: {
|
|
46
|
+
env: {
|
|
47
|
+
...process.env,
|
|
48
|
+
PANDEV_B2C: '1',
|
|
49
|
+
// Для автостарта дашборда: shim-скрипт запускает pandev тем же node
|
|
50
|
+
// и тем же лаунчером, что работали при установке (с фолбэком на npx).
|
|
51
|
+
PANDEV_NODE: process.execPath,
|
|
52
|
+
PANDEV_LAUNCHER: __filename,
|
|
53
|
+
},
|
|
47
54
|
});
|
|
48
55
|
if (r.error) {
|
|
49
56
|
console.error('pandev: failed to start the bundled binary: ' + r.error.message);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pandev",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.4",
|
|
4
4
|
"description": "Local report on what your AI agents cost — by task, branch, prompt and file. No login, no daemon, no network.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"pandev": "bin/pandev.js"
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"usage"
|
|
23
23
|
],
|
|
24
24
|
"optionalDependencies": {
|
|
25
|
-
"@pandev_metrics/cli-darwin-arm64": "2.4.
|
|
26
|
-
"@pandev_metrics/cli-darwin-x64": "2.4.
|
|
27
|
-
"@pandev_metrics/cli-linux-x64": "2.4.
|
|
25
|
+
"@pandev_metrics/cli-darwin-arm64": "2.4.4",
|
|
26
|
+
"@pandev_metrics/cli-darwin-x64": "2.4.4",
|
|
27
|
+
"@pandev_metrics/cli-linux-x64": "2.4.4"
|
|
28
28
|
}
|
|
29
29
|
}
|