ollim-telemetry 0.3.0 → 0.3.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/bin/ollim +6 -1
- package/package.json +5 -5
package/bin/ollim
CHANGED
|
@@ -33,9 +33,14 @@ try {
|
|
|
33
33
|
process.exit(1);
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
+
const binDir = path.dirname(binPath);
|
|
37
|
+
const ldPath = process.env.LD_LIBRARY_PATH
|
|
38
|
+
? `${binDir}:${process.env.LD_LIBRARY_PATH}`
|
|
39
|
+
: binDir;
|
|
40
|
+
|
|
36
41
|
const result = spawnSync(binPath, process.argv.slice(2), {
|
|
37
42
|
stdio: 'inherit',
|
|
38
|
-
env: { ...process.env, OLLIM_INSTALL_METHOD: 'npm' },
|
|
43
|
+
env: { ...process.env, OLLIM_INSTALL_METHOD: 'npm', LD_LIBRARY_PATH: ldPath },
|
|
39
44
|
});
|
|
40
45
|
|
|
41
46
|
if (result.error) {
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ollim-telemetry",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "Claude Code token usage telemetry daemon",
|
|
5
5
|
"bin": {
|
|
6
6
|
"ollim": "bin/ollim"
|
|
7
7
|
},
|
|
8
8
|
"optionalDependencies": {
|
|
9
|
-
"ollim-telemetry-linux-x64": "0.3.
|
|
10
|
-
"ollim-telemetry-linux-arm64": "0.3.
|
|
11
|
-
"ollim-telemetry-darwin-arm64": "0.3.
|
|
12
|
-
"ollim-telemetry-darwin-x64": "0.3.
|
|
9
|
+
"ollim-telemetry-linux-x64": "0.3.3",
|
|
10
|
+
"ollim-telemetry-linux-arm64": "0.3.3",
|
|
11
|
+
"ollim-telemetry-darwin-arm64": "0.3.3",
|
|
12
|
+
"ollim-telemetry-darwin-x64": "0.3.3"
|
|
13
13
|
},
|
|
14
14
|
"repository": {
|
|
15
15
|
"type": "git",
|