Skip to content

Commit a7d0c46

Browse files
authored
Merge branch 'main' into browser-json-snippets
2 parents 4924668 + cb0a58e commit a7d0c46

File tree

812 files changed

+71510
-21216
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

812 files changed

+71510
-21216
lines changed

.changeset/large-olives-wink.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/stale-rivers-travel.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.dockerignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ src/node_modules
8080
!webview-ui/
8181
!packages/evals/.docker/entrypoints/runner.sh
8282
!packages/build/
83-
!packages/cloud/
8483
!packages/config-eslint/
8584
!packages/config-typescript/
8685
!packages/evals/

.gitattributes

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
11
demo.gif filter=lfs diff=lfs merge=lfs -text
22
assets/docs/demo.gif filter=lfs diff=lfs merge=lfs -text
33
src/assets/docs/demo.gif filter=lfs diff=lfs merge=lfs -text
4+
5+
# Test snapshot files - mark as linguist-generated to exclude from GitHub language statistics
6+
*.snap linguist-generated=true
7+
8+
# Non-English translation files - mark as linguist-generated to exclude from GitHub language statistics
9+
# Root locales directory (contains only non-English translations)
10+
locales/** linguist-generated=true
11+
12+
# Mark all locale directories as generated first
13+
src/i18n/locales/** linguist-generated=true
14+
webview-ui/src/i18n/locales/** linguist-generated=true
15+
16+
# Then explicitly mark English directories as NOT generated (override the above)
17+
src/i18n/locales/en/** linguist-generated=false
18+
webview-ui/src/i18n/locales/en/** linguist-generated=false
19+
20+
# This approach uses gitattributes' last-match-wins rule to exclude English while including all other locales

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ body:
2525
- AWS Bedrock
2626
- Chutes AI
2727
- DeepSeek
28+
- Fireworks AI
2829
- Glama
2930
- Google Gemini
3031
- Google Vertex AI
@@ -38,6 +39,7 @@ body:
3839
- OpenAI Compatible
3940
- OpenRouter
4041
- Requesty
42+
- SambaNova
4143
- Unbound
4244
- VS Code Language Model API
4345
- xAI (Grok)

.github/workflows/changeset-release.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ jobs:
3131
ref: ${{ env.GIT_REF }}
3232
- name: Setup Node.js and pnpm
3333
uses: ./.github/actions/setup-node-pnpm
34-
with:
35-
skip-checkout: 'true'
3634

3735
# Check if there are any new changesets to process
3836
- name: Check for changesets

.github/workflows/marketplace-publish.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ jobs:
2525
ref: ${{ env.GIT_REF }}
2626
- name: Setup Node.js and pnpm
2727
uses: ./.github/actions/setup-node-pnpm
28-
with:
29-
skip-checkout: 'true'
3028
- name: Configure Git
3129
run: |
3230
git config user.name "github-actions[bot]"

.github/workflows/nightly-publish.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
name: Nightly Publish
22

33
on:
4-
workflow_run:
5-
workflows: ["Code QA Roo Code"]
6-
types:
7-
- completed
4+
push:
85
branches: [main]
96
workflow_dispatch: # Allows manual triggering.
107

@@ -23,7 +20,6 @@ jobs:
2320
- name: Setup Node.js and pnpm
2421
uses: ./.github/actions/setup-node-pnpm
2522
with:
26-
skip-checkout: 'true'
2723
install-args: '--frozen-lockfile'
2824
- name: Forge numeric Nightly version
2925
id: version

.github/workflows/update-contributors.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Update contributors and format
2525
run: |
2626
pnpm update-contributors
27-
npx prettier --write README.md
27+
npx prettier --write README.md locales/*/README.md
2828
if git diff --quiet; then echo "changes=false" >> $GITHUB_OUTPUT; else echo "changes=true" >> $GITHUB_OUTPUT; fi
2929
id: check-changes
3030
env:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ dist
33
out
44
out-*
55
node_modules
6+
package-lock.json
67
coverage/
78
mock/
89

0 commit comments

Comments
 (0)