cline 1.0.0-nightly.16 → 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/extension/package.json +1 -1
- package/package.json +1 -1
- package/proto/descriptor_set.pb +0 -0
- 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/extension/package.json
CHANGED
|
@@ -295,7 +295,7 @@
|
|
|
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",
|
package/package.json
CHANGED
package/proto/descriptor_set.pb
CHANGED
|
Binary file
|
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"
|