mirror of
https://github.com/cline/cline.git
synced 2026-09-19 02:05:44 +08:00
* wip: Cline Code Desktop App Add Bun/Tauri desktop packaging commands for macOS, Windows, and Linux, including output to dist/desktop. Enforce macOS signing and notarization requirements for shareable builds while allowing an explicit unsigned local test path. Document desktop packaging prerequisites, ignore generated build artifacts, and wire runtime session connection updates needed by the desktop app. Clean up and update sidecar functions. Safe to merge as this is not a published app. * fixes * chat * apply * ClinePass support * add build instructions and use system theme * fix: diff status * update tool calls display * connection updates * lint fix * fix keydown
95 lines
1.7 KiB
Plaintext
95 lines
1.7 KiB
Plaintext
out
|
|
dist
|
|
dist-standalone
|
|
node_modules
|
|
tmp
|
|
.vscode-test/
|
|
*.vsix
|
|
|
|
.DS_Store
|
|
.idea
|
|
.husky/_/
|
|
|
|
pnpm-lock.yaml
|
|
|
|
.clineignore
|
|
.cline/enterprise
|
|
.cline/remote-config
|
|
**/.cline/remote-config
|
|
.venv
|
|
.actrc
|
|
CLAUDE.local.md
|
|
|
|
apps/vscode/webview-ui/src/**/*.js
|
|
apps/vscode/webview-ui/src/**/*.js.map
|
|
|
|
# Ignore coverage directories and files
|
|
coverage
|
|
coverage-unit
|
|
.nyc_output
|
|
# But don't ignore the coverage scripts in .github/scripts/
|
|
!.github/scripts/coverage/
|
|
|
|
*evals.env
|
|
.env
|
|
.secrets
|
|
.github/act/.secrets
|
|
|
|
.worktrees
|
|
|
|
## Generated files ##
|
|
apps/vscode/src/generated/
|
|
apps/vscode/src/shared/proto/
|
|
apps/vscode/webview-ui/src/services/grpc-client.ts
|
|
*.tsbuildinfo
|
|
|
|
# E2E Tests
|
|
test-results
|
|
|
|
/.github/act
|
|
/pkg
|
|
.secrets
|
|
|
|
*.tsbuildinfo
|
|
|
|
# Smoke test results (generated)
|
|
evals/smoke-tests/results/
|
|
|
|
.tui-test
|
|
secrets.json
|
|
tui-traces
|
|
tests/**/cache
|
|
|
|
# Backup created by scripts/marketplace-readme.mjs while publishing.
|
|
# Should never be committed: only exists if a publish aborts mid-swap.
|
|
.README.github.bak
|
|
|
|
# Tauri generated code
|
|
apps/*/src-tauri/gen
|
|
apps/*/src-tauri/bin
|
|
apps/examples/*/src-tauri/gen
|
|
apps/examples/*/src-tauri/bin
|
|
# Tauri UI test snapshots
|
|
apps/*/src/tests/.tui-test
|
|
apps/*/src/tests/tui-traces
|
|
apps/vscode/webview-ui/src/**/*.js
|
|
apps/vscode/webview-ui/src/**/*.js.map
|
|
|
|
|
|
# SDK Session files / User data
|
|
.cline/data
|
|
.cline/tmp
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
.cline/**/managed.json
|
|
.cline/**/bundle.json
|
|
apps/vscode/tsconfig.test.generated.json
|
|
.next/dev/static
|
|
**/src-tauri/target/debug/.fingerprint
|
|
apps/examples/desktop-app/src-tauri/target
|
|
apps/examples/desktop-app/webview/.next
|
|
|
|
# Next.js generated type shim (churns between dev and build)
|
|
apps/examples/desktop-app/webview/next-env.d.ts
|