mirror of
https://github.com/cline/cline.git
synced 2026-09-19 02:05:44 +08:00
* Generate clientImpls and services for grpc-js. Generate grpc-js services and clients (as opposed to the generic service definition) The grpc-js clients are needed to connet to external gRPC services, ie the host bridge. Switch the standalone gRPC service to use the grpc-js service defintions, these have the correct serialize/deserialize methods and fix the camel/snake case issue. * Formatting
41 lines
725 B
Plaintext
41 lines
725 B
Plaintext
out
|
|
dist
|
|
dist-standalone
|
|
node_modules
|
|
tmp
|
|
.vscode-test/
|
|
*.vsix
|
|
|
|
.DS_Store
|
|
|
|
pnpm-lock.yaml
|
|
|
|
.clineignore
|
|
.venv
|
|
.actrc
|
|
|
|
# Ignore coverage directories and files
|
|
coverage
|
|
# But don't ignore the coverage scripts in .github/scripts/
|
|
!.github/scripts/coverage/
|
|
|
|
*evals.env
|
|
|
|
# Generated proto files
|
|
src/generated/
|
|
src/core/controller/*/methods.ts
|
|
src/core/controller/*/index.ts
|
|
src/core/controller/grpc-service-config.ts
|
|
# Shared
|
|
src/shared/proto/*.ts
|
|
src/shared/proto/host/*.ts
|
|
# Webview
|
|
webview-ui/src/services/grpc-client.ts
|
|
# Standalone
|
|
src/standalone/server-setup.ts
|
|
# Host bridge
|
|
src/hosts/vscode/*/methods.ts
|
|
src/hosts/vscode/*/index.ts
|
|
src/hosts/vscode/client/host-grpc-client.ts
|
|
src/hosts/vscode/host-grpc-service-config.ts
|