Skip to content

Commit fb146e7

Browse files
eltigerchinodominikgbenmccann
authored
chore: fix ecosystem CI (#13054)
Co-authored-by: dominikg <[email protected]> Co-authored-by: Ben McCann <[email protected]>
1 parent 361f9fe commit fb146e7

File tree

36 files changed

+125
-114
lines changed

36 files changed

+125
-114
lines changed

packages/kit/test/apps/amp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"dropcss": "^1.0.16",
2020
"svelte": "^4.2.10",
2121
"svelte-check": "^4.0.1",
22-
"typescript": "^5.3.3",
22+
"typescript": "^5.5.4",
2323
"vite": "^5.3.2"
2424
},
2525
"type": "module"

packages/kit/test/apps/basics/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"cross-env": "^7.0.3",
2020
"svelte": "^4.2.10",
2121
"svelte-check": "^4.0.1",
22-
"typescript": "^5.3.3",
22+
"typescript": "^5.5.4",
2323
"vite": "^5.3.2"
2424
},
2525
"type": "module"

packages/kit/test/apps/basics/src/routes/cookies/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
export let data;
44
</script>
55

6-
Cookie: <span id="cookie-value">{data.cookie}</span>
6+
Cookie: <span id="cookie-value">{`${data.cookie}`}</span>

packages/kit/test/apps/basics/src/routes/cookies/enhanced/basic/+page.svelte

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55
export let data;
66
</script>
77

8-
Cookie: <span id="cookie-value">
9-
{data.cookie}
10-
</span>
8+
Cookie: <span id="cookie-value">{`${data.cookie}`}</span>
119

1210
<form method="post" action="?/setTeapot" use:enhance>
1311
<button id="teapot">Set cookie to "teapot"</button>

packages/kit/test/apps/basics/src/routes/cookies/nested/a/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
export let data;
44
</script>
55

6-
Cookie: <span id="cookie-value">{data.cookie}</span>
6+
Cookie: <span id="cookie-value">{`${data.cookie}`}</span>

packages/kit/test/apps/basics/src/routes/cookies/nested/b/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
export let data;
44
</script>
55

6-
Cookie: <span id="cookie-value">{data.cookie}</span>
6+
Cookie: <span id="cookie-value">{`${data.cookie}`}</span>

packages/kit/test/apps/basics/src/routes/navigation-lifecycle/after-navigate/a/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
});
1414
</script>
1515

16-
<h1>{from?.url.pathname} -> {to?.url.pathname}</h1>
16+
<h1>{`${from?.url.pathname} -> ${to?.url.pathname}`}</h1>
1717
<a href="/navigation-lifecycle/after-navigate/b">/b</a>

packages/kit/test/apps/basics/src/routes/navigation-lifecycle/before-navigate/prevent-navigation/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
<a href="https://google.de">external</a>
2323
<!-- svelte-ignore a11y-invalid-attribute -->
2424
<a download href="">external</a>
25-
<pre>{times_triggered} {unload} {navigation_type}</pre>
25+
<pre>{times_triggered} {unload} {`${navigation_type}`}</pre>

packages/kit/test/apps/basics/src/routes/navigation-lifecycle/on-navigate/[x]/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@
2525
});
2626
</script>
2727

28-
<h1>{from?.url.pathname} -> {to?.url.pathname} ({type ?? '...'}) {called_return}</h1>
28+
<h1>{`${from?.url.pathname} -> ${to?.url.pathname}`} ({type ?? '...'}) {called_return}</h1>
2929
<a href="/navigation-lifecycle/on-navigate/b">/b</a>

packages/kit/test/apps/basics/src/routes/store/client-access/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
let pathname;
55
</script>
66

7-
<h1>{pathname}</h1>
7+
<h1>{`${pathname}`}</h1>
88

99
<button
1010
on:click={() => {

0 commit comments

Comments
 (0)