Skip to content

Commit ed3bf01

Browse files
committed
merge main
2 parents e1b940c + efa5acf commit ed3bf01

File tree

243 files changed

+4720
-1110
lines changed

Some content is hidden

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

243 files changed

+4720
-1110
lines changed

CONTRIBUTING.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,6 @@ When [opening a new issue](https://github.com/sveltejs/svelte/issues/new/choose)
6262

6363
## Pull requests
6464

65-
> HEADS UP: Svelte 5 will likely change a lot on the compiler. For that reason, please don't open PRs that are large in scope, touch more than a couple of files etc. In other words, bug fixes are fine, but big feature PRs will likely not be merged.
66-
6765
### Proposing a change
6866

6967
If you would like to request a new feature or enhancement but are not yet thinking about opening a pull request, you can also file an issue with [feature template](https://github.com/sveltejs/svelte/issues/new?template=feature_request.yml).

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2016-24 [these people](https://github.com/sveltejs/svelte/graphs/contributors)
1+
Copyright (c) 2016-2025 [these people](https://github.com/sveltejs/svelte/graphs/contributors)
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
44

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@ You may view [our roadmap](https://svelte.dev/roadmap) if you'd like to see what
2424

2525
Please see the [Contributing Guide](CONTRIBUTING.md) and the [`svelte`](packages/svelte) package for information on contributing to Svelte.
2626

27-
### svelte.dev
28-
29-
The source code for https://svelte.dev lives in the [sites](https://github.com/sveltejs/svelte/tree/master/sites/svelte.dev) folder, with all the documentation right [here](https://github.com/sveltejs/svelte/tree/master/documentation). The site is built with [SvelteKit](https://svelte.dev/docs/kit).
30-
3127
## Is svelte.dev down?
3228

3329
Probably not, but it's possible. If you can't seem to access any `.dev` sites, check out [this SuperUser question and answer](https://superuser.com/q/1413402).

benchmarking/benchmarks/reactivity/kairo/kairo_avoidable.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export async function kairo_avoidable_unowned() {
4545
const { run, destroy } = setup();
4646

4747
const { timing } = await fastest_test(10, () => {
48-
for (let i = 0; i < 100; i++) {
48+
for (let i = 0; i < 1000; i++) {
4949
run();
5050
}
5151
});
@@ -74,7 +74,7 @@ export async function kairo_avoidable_owned() {
7474
});
7575

7676
const { timing } = await fastest_test(10, () => {
77-
for (let i = 0; i < 100; i++) {
77+
for (let i = 0; i < 1000; i++) {
7878
run();
7979
}
8080
});

benchmarking/benchmarks/reactivity/kairo/kairo_broad.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export async function kairo_broad_unowned() {
5151
const { run, destroy } = setup();
5252

5353
const { timing } = await fastest_test(10, () => {
54-
for (let i = 0; i < 100; i++) {
54+
for (let i = 0; i < 1000; i++) {
5555
run();
5656
}
5757
});
@@ -80,7 +80,7 @@ export async function kairo_broad_owned() {
8080
});
8181

8282
const { timing } = await fastest_test(10, () => {
83-
for (let i = 0; i < 100; i++) {
83+
for (let i = 0; i < 1000; i++) {
8484
run();
8585
}
8686
});

benchmarking/benchmarks/reactivity/kairo/kairo_deep.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export async function kairo_deep_unowned() {
5151
const { run, destroy } = setup();
5252

5353
const { timing } = await fastest_test(10, () => {
54-
for (let i = 0; i < 100; i++) {
54+
for (let i = 0; i < 1000; i++) {
5555
run();
5656
}
5757
});
@@ -80,7 +80,7 @@ export async function kairo_deep_owned() {
8080
});
8181

8282
const { timing } = await fastest_test(10, () => {
83-
for (let i = 0; i < 100; i++) {
83+
for (let i = 0; i < 1000; i++) {
8484
run();
8585
}
8686
});

benchmarking/benchmarks/reactivity/kairo/kairo_diamond.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export async function kairo_diamond_unowned() {
5555
const { run, destroy } = setup();
5656

5757
const { timing } = await fastest_test(10, () => {
58-
for (let i = 0; i < 100; i++) {
58+
for (let i = 0; i < 1000; i++) {
5959
run();
6060
}
6161
});
@@ -84,7 +84,7 @@ export async function kairo_diamond_owned() {
8484
});
8585

8686
const { timing } = await fastest_test(10, () => {
87-
for (let i = 0; i < 100; i++) {
87+
for (let i = 0; i < 1000; i++) {
8888
run();
8989
}
9090
});

benchmarking/benchmarks/reactivity/kairo/kairo_mux.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export async function kairo_mux_unowned() {
4848
const { run, destroy } = setup();
4949

5050
const { timing } = await fastest_test(10, () => {
51-
for (let i = 0; i < 100; i++) {
51+
for (let i = 0; i < 1000; i++) {
5252
run();
5353
}
5454
});
@@ -77,7 +77,7 @@ export async function kairo_mux_owned() {
7777
});
7878

7979
const { timing } = await fastest_test(10, () => {
80-
for (let i = 0; i < 100; i++) {
80+
for (let i = 0; i < 1000; i++) {
8181
run();
8282
}
8383
});

benchmarking/benchmarks/reactivity/kairo/kairo_repeated.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export async function kairo_repeated_unowned() {
5252
const { run, destroy } = setup();
5353

5454
const { timing } = await fastest_test(10, () => {
55-
for (let i = 0; i < 100; i++) {
55+
for (let i = 0; i < 1000; i++) {
5656
run();
5757
}
5858
});
@@ -81,7 +81,7 @@ export async function kairo_repeated_owned() {
8181
});
8282

8383
const { timing } = await fastest_test(10, () => {
84-
for (let i = 0; i < 100; i++) {
84+
for (let i = 0; i < 1000; i++) {
8585
run();
8686
}
8787
});

benchmarking/benchmarks/reactivity/kairo/kairo_triangle.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export async function kairo_triangle_unowned() {
6565
const { run, destroy } = setup();
6666

6767
const { timing } = await fastest_test(10, () => {
68-
for (let i = 0; i < 100; i++) {
68+
for (let i = 0; i < 1000; i++) {
6969
run();
7070
}
7171
});
@@ -94,7 +94,7 @@ export async function kairo_triangle_owned() {
9494
});
9595

9696
const { timing } = await fastest_test(10, () => {
97-
for (let i = 0; i < 100; i++) {
97+
for (let i = 0; i < 1000; i++) {
9898
run();
9999
}
100100
});

0 commit comments

Comments
 (0)