@shipers-dev/dayline 0.105.0 → 0.107.0
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/dayline.js +13 -8
- package/package.json +6 -7
package/bin/dayline.js
CHANGED
|
@@ -16,15 +16,20 @@ const { existsSync } = require("fs");
|
|
|
16
16
|
const { dirname, join } = require("path");
|
|
17
17
|
|
|
18
18
|
// The platforms this release actually publishes a binary for. Keep in sync
|
|
19
|
-
// with the optionalDependencies block in this package's package.json
|
|
20
|
-
// ship together, so they
|
|
19
|
+
// with the optionalDependencies block in this package's package.json and with
|
|
20
|
+
// the `yes` rows in scripts/build-cli.sh — the three ship together, so they
|
|
21
|
+
// can never disagree.
|
|
21
22
|
//
|
|
22
|
-
//
|
|
23
|
-
//
|
|
24
|
-
//
|
|
25
|
-
//
|
|
26
|
-
|
|
27
|
-
|
|
23
|
+
// Listing a platform whose package does not exist is worse than omitting it:
|
|
24
|
+
// npm skips the failed optional dependency and the user is told their install
|
|
25
|
+
// is broken, when in truth it was never published. win32 is the one target the
|
|
26
|
+
// build script knows and does not publish, so it is absent here.
|
|
27
|
+
const TARGETS = new Set([
|
|
28
|
+
"darwin-arm64",
|
|
29
|
+
"darwin-x64",
|
|
30
|
+
"linux-x64",
|
|
31
|
+
"linux-arm64",
|
|
32
|
+
]);
|
|
28
33
|
|
|
29
34
|
const BIN = process.platform === "win32" ? "dayline.exe" : "dayline";
|
|
30
35
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shipers-dev/dayline",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.107.0",
|
|
4
4
|
"description": "Run coding agents on your machine, driven from anywhere.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"bin": {
|
|
@@ -10,13 +10,12 @@
|
|
|
10
10
|
"bin"
|
|
11
11
|
],
|
|
12
12
|
"optionalDependencies": {
|
|
13
|
-
"@shipers-dev/dayline-darwin-arm64": "0.
|
|
14
|
-
"@shipers-dev/dayline-darwin-x64": "0.
|
|
13
|
+
"@shipers-dev/dayline-darwin-arm64": "0.107.0",
|
|
14
|
+
"@shipers-dev/dayline-darwin-x64": "0.107.0",
|
|
15
|
+
"@shipers-dev/dayline-linux-x64": "0.107.0",
|
|
16
|
+
"@shipers-dev/dayline-linux-arm64": "0.107.0"
|
|
15
17
|
},
|
|
16
18
|
"dependencies": {
|
|
17
19
|
"@agentclientprotocol/claude-agent-acp": "0.65.0"
|
|
18
|
-
}
|
|
19
|
-
"os": [
|
|
20
|
-
"darwin"
|
|
21
|
-
]
|
|
20
|
+
}
|
|
22
21
|
}
|