Skip to content

Commit 58c044a

Browse files
authored
Merge branch 'main' into feat/doc_deployment
2 parents 6d4916e + 32d60a0 commit 58c044a

Some content is hidden

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

52 files changed

+1842
-662
lines changed

.github/renovate.json5

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,13 @@
1717
},
1818
{
1919
"groupName": "rolldown-related dependencies",
20-
"matchDepNames": ["rolldown", "rolldown-plugin-dts", "tsdown"],
20+
"matchDepNames": [
21+
"rolldown",
22+
"rolldown-plugin-dts",
23+
"tsdown",
24+
"@oxc-project/*",
25+
"oxc-*",
26+
],
2127
},
2228
],
2329
"ignoreDeps": [

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
steps:
4141
- name: Checkout
42-
uses: actions/checkout@v5
42+
uses: actions/checkout@v6
4343
with:
4444
# Assume PRs are less than 50 commits
4545
fetch-depth: 50
@@ -75,7 +75,7 @@ jobs:
7575
name: "Build&Test: node-${{ matrix.node_version }}, ${{ matrix.os }}"
7676
steps:
7777
- name: Checkout
78-
uses: actions/checkout@v5
78+
uses: actions/checkout@v6
7979

8080
- name: Install pnpm
8181
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
@@ -157,13 +157,13 @@ jobs:
157157
name: "Build&Test: node-${{ matrix.node_version }}, ${{ matrix.os }} (js plugins)"
158158
steps:
159159
- name: Checkout
160-
uses: actions/checkout@v4
160+
uses: actions/checkout@v6
161161

162162
- name: Install pnpm
163163
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
164164

165165
- name: Set node version to ${{ matrix.node_version }}
166-
uses: actions/setup-node@v4
166+
uses: actions/setup-node@v6
167167
with:
168168
node-version: ${{ matrix.node_version }}
169169
cache: "pnpm"
@@ -220,7 +220,7 @@ jobs:
220220
runs-on: ubuntu-latest
221221
name: "Lint: node-24, ubuntu-latest"
222222
steps:
223-
- uses: actions/checkout@v5
223+
- uses: actions/checkout@v6
224224

225225
- name: Install pnpm
226226
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0

.github/workflows/copilot-setup-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
contents: write
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818

1919
- name: Install pnpm
2020
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0

.github/workflows/issue-close-require.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
pull-requests: write # for actions-cool/issues-helper to update PRs
1414
steps:
1515
- name: needs reproduction
16-
uses: actions-cool/issues-helper@9861779a695cf1898bd984c727f685f351cfc372 # v3
16+
uses: actions-cool/issues-helper@3809910bc12872edc9b8132f122069ac16cd16ee # v3
1717
with:
1818
actions: "close-issues"
1919
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/issue-labeled.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- name: contribution welcome
1616
if: github.event.label.name == 'contribution welcome' || github.event.label.name == 'help wanted'
17-
uses: actions-cool/issues-helper@9861779a695cf1898bd984c727f685f351cfc372 # v3
17+
uses: actions-cool/issues-helper@3809910bc12872edc9b8132f122069ac16cd16ee # v3
1818
with:
1919
actions: "remove-labels"
2020
token: ${{ secrets.GITHUB_TOKEN }}
@@ -23,7 +23,7 @@ jobs:
2323

2424
- name: remove pending
2525
if: (github.event.label.name == 'enhancement' || contains(github.event.label.description, '(priority)')) && contains(github.event.issue.labels.*.name, 'pending triage')
26-
uses: actions-cool/issues-helper@9861779a695cf1898bd984c727f685f351cfc372 # v3
26+
uses: actions-cool/issues-helper@3809910bc12872edc9b8132f122069ac16cd16ee # v3
2727
with:
2828
actions: "remove-labels"
2929
token: ${{ secrets.GITHUB_TOKEN }}
@@ -32,7 +32,7 @@ jobs:
3232

3333
- name: needs reproduction
3434
if: github.event.label.name == 'needs reproduction'
35-
uses: actions-cool/issues-helper@9861779a695cf1898bd984c727f685f351cfc372 # v3
35+
uses: actions-cool/issues-helper@3809910bc12872edc9b8132f122069ac16cd16ee # v3
3636
with:
3737
actions: "create-comment, remove-labels"
3838
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/lock-closed-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
if: github.repository == 'vitejs/vite'
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions-cool/issues-helper@9861779a695cf1898bd984c727f685f351cfc372 # v3
15+
- uses: actions-cool/issues-helper@3809910bc12872edc9b8132f122069ac16cd16ee # v3
1616
with:
1717
actions: "lock-issues"
1818
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/preview-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Checkout code
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727

2828
- name: Install pnpm
2929
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
environment: Release
1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v6
2222

2323
- name: Install pnpm
2424
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0

.github/workflows/release-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
permissions:
1717
contents: write # for yyx990803/release-tag to create a release tag
1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020

2121
- name: Get pkgName for tag
2222
id: tag

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
- 🔩 Universal Plugin Interface
2424
- 🔑 Fully Typed APIs
2525

26-
Vite (French word for "quick", pronounced [`/vit/`](https://cdn.jsdelivr.net/gh/vitejs/vite@main/docs/public/vite.mp3), like "veet") is a new breed of frontend build tooling that significantly improves the frontend development experience. It consists of two major parts:
26+
Vite (French word for "quick", pronounced [`/viːt/`](https://cdn.jsdelivr.net/gh/vitejs/vite@main/docs/public/vite.mp3), like "veet") is a new breed of frontend build tooling that significantly improves the frontend development experience. It consists of two major parts:
2727

2828
- A dev server that serves your source files over [native ES modules](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules), with [rich built-in features](https://vite.dev/guide/features.html) and astonishingly fast [Hot Module Replacement (HMR)](https://vite.dev/guide/features.html#hot-module-replacement).
2929

0 commit comments

Comments
 (0)