screenpipe 0.4.10 → 0.4.12
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/lib/cli.js +6 -1
- package/package.json +5 -5
package/lib/cli.js
CHANGED
|
@@ -21,7 +21,12 @@ if (!bin) {
|
|
|
21
21
|
process.exit(1);
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
-
|
|
24
|
+
// Tag engine telemetry as the npm/bunx CLI (vs desktop-app / source) so WAU can
|
|
25
|
+
// be split by distribution. Respect an explicit override if one is already set.
|
|
26
|
+
const child = spawn(bin, process.argv.slice(2), {
|
|
27
|
+
stdio: "inherit",
|
|
28
|
+
env: { ...process.env, SCREENPIPE_DISTRIBUTION: process.env.SCREENPIPE_DISTRIBUTION || "cli" },
|
|
29
|
+
});
|
|
25
30
|
let forwardingSignal = null;
|
|
26
31
|
|
|
27
32
|
child.on("error", (error) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "screenpipe",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.12",
|
|
4
4
|
"description": "screenpipe CLI — AI that knows everything you've seen, said, or heard",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"exports": {
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"postinstall": "node scripts/postinstall.js"
|
|
14
14
|
},
|
|
15
15
|
"optionalDependencies": {
|
|
16
|
-
"@screenpipe/cli-darwin-arm64": "0.4.
|
|
17
|
-
"@screenpipe/cli-darwin-x64": "0.4.
|
|
18
|
-
"@screenpipe/cli-linux-x64": "0.4.
|
|
19
|
-
"@screenpipe/cli-win32-x64": "0.4.
|
|
16
|
+
"@screenpipe/cli-darwin-arm64": "0.4.12",
|
|
17
|
+
"@screenpipe/cli-darwin-x64": "0.4.12",
|
|
18
|
+
"@screenpipe/cli-linux-x64": "0.4.12",
|
|
19
|
+
"@screenpipe/cli-win32-x64": "0.4.12"
|
|
20
20
|
},
|
|
21
21
|
"repository": {
|
|
22
22
|
"type": "git",
|