Skip to content

Commit

Permalink
fix: svelte5 has been released, switch vite-plugin-svelte to main (#329)
Browse files Browse the repository at this point in the history
fix: svelte5 has been released, switch vite-plugin-svelte to main branch again
  • Loading branch information
dominikg authored Oct 21, 2024
1 parent befa3af commit 9d846a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions builds/vite-plugin-svelte.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,10 @@ import { runInRepo } from '../utils.ts'
import type { RunOptions } from '../types.d.ts'

export async function build(options: RunOptions) {
if (options.viteMajor < 4) {
return
}
return runInRepo({
...options,
repo: 'sveltejs/vite-plugin-svelte',
branch: 'v3',
branch: 'main',
overrides: {
svelte: 'latest',
},
Expand Down
2 changes: 1 addition & 1 deletion tests/vite-plugin-svelte.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export async function test(options: RunOptions) {
await runInRepo({
...options,
repo: 'sveltejs/vite-plugin-svelte',
branch: 'v3',
branch: 'main',
overrides: {
svelte: 'latest',
},
Expand Down

0 comments on commit 9d846a0

Please sign in to comment.