mirror of
https://github.com/cline/cline.git
synced 2026-09-19 10:13:34 +08:00
* super sketchy big merge with main * gitignore * gitignore * Delete cli/bin/air * Delete cli/bin directory * Delete cli/cline-host * Fix missing package.json in cli Copy the package JSON into the dist-standalone dir during compilation. Remove workaround for missing package.json * Update scripts/build-cli.sh Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> * Remove reference to watchservice, it has been removed * Update scripts/build-go-proto.mjs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Fix timestamp to string conversion * diff.go ellipsis fix * COMMON_TYPES --------- Co-authored-by: Sarah Fortune <sarah.fortune@gmail.com> Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
16 lines
327 B
Bash
Executable File
16 lines
327 B
Bash
Executable File
#!/bin/bash
|
|
set -eux
|
|
|
|
npm run protos
|
|
npm run protos-go
|
|
|
|
mkdir -p dist-standalone/extension
|
|
cp package.json dist-standalone/extension
|
|
|
|
cd cli
|
|
GO111MODULE=on go build -o bin/cline ./cmd/cline
|
|
echo '🖥️ cli/bin/cline built'
|
|
GO111MODULE=on go build -o bin/cline-host ./cmd/cline-host
|
|
|
|
echo '🖥️ cli/bin/cline-host built'
|