Skip to content
This repository was archived by the owner on Mar 19, 2026. It is now read-only.

Commit 6edccf1

Browse files
committed
chore: merge main
2 parents b829ac5 + 5d2c31f commit 6edccf1

65 files changed

Lines changed: 837 additions & 1606 deletions

Some content is hidden

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

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
name: "\U0001F41E General Bug report"
2-
description: Report an issue with `rolldown-vite`
1+
name: "\U0001F41E Bug report"
2+
description: Report an issue with Vite
33
labels: [pending triage]
44
type: Bug
55
body:
@@ -19,7 +19,7 @@ body:
1919
id: reproduction
2020
attributes:
2121
label: Reproduction
22-
description: Please provide a link via [StackBlitz](https://stackblitz.com/fork/github/vitejs/rolldown-vite/tree/rolldown-vite/packages/create-vite/template-vanilla) or a link to a repo that can reproduce the problem you ran into. `npm create vite@latest` and `npm create vite-extra@latest` (for SSR or library repros) can be used as a starter template (don't forget to alias `vite` to `rolldown-vite`). A [minimal reproduction](https://stackoverflow.com/help/minimal-reproducible-example) is required ([Why?](https://antfu.me/posts/why-reproductions-are-required)). If a report is vague (e.g. just a generic error message) and has no reproduction, it will receive a "needs reproduction" label. If no reproduction is provided after 3 days, it will be auto-closed.
22+
description: Please provide a link via [vite.new](https://vite.new/) or a link to a repo that can reproduce the problem you ran into. `npm create vite@latest` and `npm create vite-extra@latest` (for SSR or library repros) can be used as a starter template. A [minimal reproduction](https://stackoverflow.com/help/minimal-reproducible-example) is required ([Why?](https://antfu.me/posts/why-reproductions-are-required)). If a report is vague (e.g. just a generic error message) and has no reproduction, it will receive a "needs reproduction" label. If no reproduction is provided after 3 days, it will be auto-closed.
2323
placeholder: Reproduction URL
2424
validations:
2525
required: true
@@ -33,7 +33,7 @@ body:
3333
id: system-info
3434
attributes:
3535
label: System Info
36-
description: Output of `npx envinfo --system --npmPackages '{vite,rolldown-vite,@vitejs/*,rollup,rolldown}' --binaries --browsers`
36+
description: Output of `npx envinfo --system --npmPackages '{vite,@vitejs/*,rollup,rolldown}' --binaries --browsers`
3737
render: shell
3838
placeholder: System, Binaries, Browsers
3939
validations:
@@ -75,15 +75,17 @@ body:
7575
label: Validations
7676
description: Before submitting the issue, please make sure you do the following
7777
options:
78-
- label: Follow our [Code of Conduct](https://github.com/vitejs/rolldown-vite/blob/main/CODE_OF_CONDUCT.md)
78+
- label: Follow our [Code of Conduct](https://github.com/vitejs/vite/blob/main/CODE_OF_CONDUCT.md)
7979
required: true
80-
- label: Read the [Contributing Guidelines](https://github.com/vitejs/rolldown-vite/blob/main/CONTRIBUTING.md).
80+
- label: Read the [Contributing Guidelines](https://github.com/vitejs/vite/blob/main/CONTRIBUTING.md).
8181
required: true
82-
- label: Read the [docs](https://vite.dev/guide) and the [Rolldown-related guide](https://main.vite.dev/guide/rolldown.html).
82+
- label: Read the [docs](https://vite.dev/guide).
8383
required: true
84-
- label: Check that there isn't [already an issue](https://github.com/vitejs/rolldown-vite/issues) that reports the same bug to avoid creating a duplicate.
84+
- label: Check that there isn't [already an issue](https://github.com/vitejs/vite/issues) that reports the same bug to avoid creating a duplicate.
8585
required: true
86-
- label: Check that this is a concrete bug. For Q&A open a [GitHub Discussion](https://github.com/vitejs/rolldown-vite/discussions) or join our [Discord Chat Server](https://chat.vite.dev/).
86+
- label: Make sure this is a Vite issue and not a framework-specific issue. For example, if it's a Vue SFC related bug, it should likely be reported to [vuejs/core](https://github.com/vuejs/core) instead.
87+
required: true
88+
- label: Check that this is a concrete bug. For Q&A open a [GitHub Discussion](https://github.com/vitejs/vite/discussions) or join our [Discord Chat Server](https://chat.vite.dev/).
8789
required: true
8890
- label: The provided reproduction is a [minimal reproducible example](https://stackoverflow.com/help/minimal-reproducible-example) of the bug.
8991
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
blank_issues_enabled: false
22
contact_links:
3-
- name: Vite Discord
4-
url: https://chat.vite.dev/
5-
about: Do you have questions around Vite? Then join the Discord to discuss them with other Vite users.
6-
- name: Rolldown Discord
7-
url: https://chat.rolldown.rs/
8-
about: Ask questions and discuss with other Rolldown users in real time.
3+
- name: Rolldown-Vite & Vite 8 beta Issues
4+
url: https://github.com/vitejs/rolldown-vite/issues/new/choose
5+
about: Rolldown-Vite related issues should be reported on the rolldown-vite repository.
6+
- name: Vite Plugin React Issues
7+
url: https://github.com/vitejs/vite-plugin-react/issues/new/choose
8+
about: React related issues should be reported on the vite-plugin-react repository.
9+
- name: Vite Plugin Vue Issues
10+
url: https://github.com/vitejs/vite-plugin-vue/issues/new/choose
11+
about: Vue related issues should be reported on the vite-plugin-vue repository.
12+
- name: Discord Chat
13+
url: https://chat.vite.dev
14+
about: Ask questions and discuss with other Vite users in real time.
915
- name: Questions & Discussions
10-
url: https://github.com/vitejs/rolldown-vite/discussions
16+
url: https://github.com/vitejs/vite/discussions
1117
about: Use GitHub discussions for message-board style questions and discussions.

.github/ISSUE_TEMPLATE/docs.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: "\U0001F4DA Documentation"
2+
description: Suggest a change or new page to be added to vite.dev
3+
labels: [documentation]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this issue!
9+
- type: checkboxes
10+
id: documentation_is
11+
attributes:
12+
label: Documentation is
13+
options:
14+
- label: Missing
15+
- label: Outdated
16+
- label: Confusing
17+
- label: Not sure?
18+
- type: textarea
19+
id: description
20+
attributes:
21+
label: Explain in Detail
22+
description: A clear and concise description of your suggestion. If you intend to submit a PR for this issue, tell us in the description. Thanks!
23+
placeholder: The description of ... page is not clear. I thought it meant ... but it wasn't.
24+
validations:
25+
required: true
26+
- type: textarea
27+
id: suggestion
28+
attributes:
29+
label: Your Suggestion for Changes
30+
validations:
31+
required: true
32+
- type: input
33+
id: reproduction
34+
attributes:
35+
label: Reproduction
36+
description: If you have a reproduction, please provide a link via [vite.new](https://vite.new/) or a link to a repo that can reproduce the problem you ran into. `npm create vite@latest` and `npm create vite-extra@latest` (for SSR or library repros) can be used as a starter template.
37+
placeholder: Reproduction URL
38+
- type: textarea
39+
id: reproduction-steps
40+
attributes:
41+
label: Steps to reproduce
42+
description: Please provide any reproduction steps that may need to be described. E.g. if it happens only when running the dev or build script make sure it's clear which one to use.
43+
placeholder: Run `npm install` followed by `npm run dev`

.github/ISSUE_TEMPLATE/feature-regression.yml

Lines changed: 0 additions & 105 deletions
This file was deleted.
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
name: "\U0001F680 New feature proposal"
2+
description: Propose a new feature to be added to Vite
3+
labels: ["pending triage"]
4+
type: Feature
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for your interest in the project and taking the time to fill out this feature report!
10+
- type: textarea
11+
id: feature-description
12+
attributes:
13+
label: Description
14+
description: "Clear and concise description of the problem. Please make the reason and usecases as detailed as possible. If you intend to submit a PR for this issue, tell us in the description. Thanks!"
15+
placeholder: As a developer using Vite I want [goal / wish] so that [benefit].
16+
validations:
17+
required: true
18+
- type: textarea
19+
id: suggested-solution
20+
attributes:
21+
label: Suggested solution
22+
description: "In module [xy] we could provide following implementation..."
23+
validations:
24+
required: true
25+
- type: textarea
26+
id: alternative
27+
attributes:
28+
label: Alternative
29+
description: Clear and concise description of any alternative solutions or features you've considered.
30+
- type: textarea
31+
id: additional-context
32+
attributes:
33+
label: Additional context
34+
description: Any other context or screenshots about the feature request here.
35+
- type: checkboxes
36+
id: checkboxes
37+
attributes:
38+
label: Validations
39+
description: Before submitting the issue, please make sure you do the following
40+
options:
41+
- label: Follow our [Code of Conduct](https://github.com/vitejs/vite/blob/main/CODE_OF_CONDUCT.md)
42+
required: true
43+
- label: Read the [Contributing Guidelines](https://github.com/vitejs/vite/blob/main/CONTRIBUTING.md).
44+
required: true
45+
- label: Read the [docs](https://vite.dev/guide).
46+
required: true
47+
- label: Check that there isn't already an issue that request the same feature to avoid creating a duplicate.
48+
required: true

.github/ISSUE_TEMPLATE/performance.yml

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
close-issues:
9-
if: github.repository == 'vitejs/rolldown-vite'
9+
if: github.repository == 'vitejs/vite'
1010
runs-on: ubuntu-latest
1111
permissions:
1212
issues: write # for actions-cool/issues-helper to update issues

.github/workflows/issue-labeled.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
reply-labeled:
9-
if: github.repository == 'vitejs/rolldown-vite'
9+
if: github.repository == 'vitejs/vite'
1010
runs-on: ubuntu-latest
1111
permissions:
1212
issues: write # for actions-cool/issues-helper to update issues
@@ -38,5 +38,5 @@ jobs:
3838
token: ${{ secrets.GITHUB_TOKEN }}
3939
issue-number: ${{ github.event.issue.number }}
4040
body: |
41-
Hello @${{ github.event.issue.user.login }}. Please provide a [minimal reproduction](https://stackoverflow.com/help/minimal-reproducible-example) using a GitHub repository or [StackBlitz](https://stackblitz.com/fork/github/vitejs/rolldown-vite/tree/rolldown-vite/packages/create-vite/template-vanilla). Issues marked with `needs reproduction` will be closed if they have no activity within 3 days.
41+
Hello @${{ github.event.issue.user.login }}. Please provide a [minimal reproduction](https://stackoverflow.com/help/minimal-reproducible-example) using a GitHub repository or [StackBlitz](https://vite.new). Issues marked with `needs reproduction` will be closed if they have no activity within 3 days.
4242
labels: "pending triage"

0 commit comments

Comments
 (0)