cline 1.0.0-nightly.15 → 1.0.0-nightly.17
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/cline +0 -0
- package/bin/cline-darwin-amd64 +0 -0
- package/bin/cline-darwin-arm64 +0 -0
- package/bin/cline-host +0 -0
- package/bin/cline-host-darwin-amd64 +0 -0
- package/bin/cline-host-darwin-arm64 +0 -0
- package/bin/cline-host-linux-amd64 +0 -0
- package/bin/cline-host-linux-arm64 +0 -0
- package/bin/cline-linux-amd64 +0 -0
- package/bin/cline-linux-arm64 +0 -0
- package/cline-core.js +3 -2
- package/extension/package.json +3 -2
- package/package.json +1 -1
- package/test-startup.sh +14 -0
package/bin/cline
CHANGED
|
Binary file
|
package/bin/cline-darwin-amd64
CHANGED
|
Binary file
|
package/bin/cline-darwin-arm64
CHANGED
|
Binary file
|
package/bin/cline-host
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/bin/cline-linux-amd64
CHANGED
|
Binary file
|
package/bin/cline-linux-arm64
CHANGED
|
Binary file
|
package/cline-core.js
CHANGED
|
@@ -624971,8 +624971,8 @@ var init_posthog_config = __esm({
|
|
|
624971
624971
|
"use strict";
|
|
624972
624972
|
useDevEnv = process.env.IS_DEV === "true" || process.env.CLINE_ENVIRONMENT === "local";
|
|
624973
624973
|
posthogConfig = {
|
|
624974
|
-
apiKey:
|
|
624975
|
-
errorTrackingApiKey:
|
|
624974
|
+
apiKey: "phc_TpRIySHEzOdf1lj5JkzF5xN8FZODg0vMIyJKSaEzsTE",
|
|
624975
|
+
errorTrackingApiKey: "phc_TpRIySHEzOdf1lj5JkzF5xN8FZODg0vMIyJKSaEzsTE",
|
|
624976
624976
|
host: "https://data.cline.bot",
|
|
624977
624977
|
uiHost: useDevEnv ? "https://us.i.posthog.com" : "https://us.posthog.com"
|
|
624978
624978
|
};
|
|
@@ -886543,6 +886543,7 @@ var init_vertex = __esm({
|
|
|
886543
886543
|
let stream5;
|
|
886544
886544
|
switch (modelId) {
|
|
886545
886545
|
case "claude-haiku-4-5@20251001":
|
|
886546
|
+
case "claude-sonnet-4-5@20250929":
|
|
886546
886547
|
case "claude-sonnet-4@20250514":
|
|
886547
886548
|
case "claude-opus-4-1@20250805":
|
|
886548
886549
|
case "claude-opus-4@20250514":
|
package/extension/package.json
CHANGED
|
@@ -295,10 +295,11 @@
|
|
|
295
295
|
"vscode:prepublish": "npm run package",
|
|
296
296
|
"compile": "npm run check-types && npm run lint && node esbuild.mjs",
|
|
297
297
|
"compile-standalone": "npm run check-types && npm run lint && node esbuild.mjs --standalone",
|
|
298
|
-
"compile-standalone-npm": "npm run check-types && npm run lint && node esbuild.mjs --standalone",
|
|
298
|
+
"compile-standalone-npm": "npm run protos && npm run protos-go && npm run check-types && npm run lint && node esbuild.mjs --standalone",
|
|
299
299
|
"compile-cli": "scripts/build-cli.sh",
|
|
300
300
|
"compile-cli-all-platforms": "scripts/build-cli-all-platforms.sh",
|
|
301
|
-
|
|
301
|
+
"compile-cli-man-page": "pandoc cli/man/cline.1.md -s -t man -o cli/man/cline.1",
|
|
302
|
+
"build:npm": "scripts/build-npm-package.sh",
|
|
302
303
|
"test:install": "bash scripts/test-install.sh",
|
|
303
304
|
"dev:cli:watch": "node scripts/dev-cli-watch.mjs",
|
|
304
305
|
"postcompile-standalone": "node scripts/package-standalone.mjs",
|
package/package.json
CHANGED
package/test-startup.sh
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
# Test script to check if cline-core starts without errors
|
|
3
|
+
|
|
4
|
+
echo "Testing cline-core startup..."
|
|
5
|
+
node cline-core.js &
|
|
6
|
+
PID=$!
|
|
7
|
+
|
|
8
|
+
# Wait for 3 seconds
|
|
9
|
+
sleep 3
|
|
10
|
+
|
|
11
|
+
# Kill the process
|
|
12
|
+
kill $PID 2>/dev/null
|
|
13
|
+
|
|
14
|
+
echo "Test complete"
|