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 CHANGED
Binary file
Binary file
Binary file
package/bin/cline-host CHANGED
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cline",
3
- "version": "1.0.0-nightly.16",
3
+ "version": "1.0.0-nightly.17",
4
4
  "description": "Autonomous coding agent CLI - capable of creating/editing files, running commands, using the browser, and more",
5
5
  "main": "cline-core.js",
6
6
  "bin": {
Binary file
@@ -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"