Skip to content

Commit 17e73a3

Browse files
committed
fix ci
1 parent 0c65b5a commit 17e73a3

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

test/samples/block-filenames/Input.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
if (foo) bar;
88
</script>
99

10-
<div on:click={() => { if (foo) bar; }}>blah</div>
10+
<div on:click={() => { if (foo) bar; }} on:keyup={() => { if (foo) bar; }}>blah</div>
Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[
2-
{
3-
"ruleId": "curly",
4-
"line": 2,
5-
"column": 12
6-
},
7-
{
8-
"ruleId": "curly",
9-
"line": 7,
10-
"column": 11
11-
}
2+
{
3+
"ruleId": "curly",
4+
"line": 2,
5+
"column": 12
6+
},
7+
{
8+
"ruleId": "curly",
9+
"line": 7,
10+
"column": 11
11+
}
1212
]

test/samples/script-reference/Input.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
}, 1000);
66
</script>
77

8-
<div on:click={() => foo = true}>foo</div>
8+
<div on:click={() => foo = true} on:keyup={() => foo = true}>foo</div>

test/samples/typescript-block-filenames/Input.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
if (foo) bar;
88
</script>
99

10-
<div on:click={() => { if (foo) bar; }}>blah</div>
10+
<div on:click={() => { if (foo) bar; }} on:keyup={() => { if (foo) bar; }}>blah</div>

test/samples/typescript-imports/Input.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
a;
88
</script>
99

10-
<div on:click={() => new Thing2()}></div>
10+
<div on:click={() => new Thing2()} on:keyup={() => new Thing2()}></div>
1111
<Component />

test/samples/typescript-inline-type-import/Input.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
a;
77
</script>
88

9-
<div on:click={() => new Thing2()}></div>
9+
<div on:click={() => new Thing2()} on:keyup={() => new Thing2()}></div>
1010
<Component />

test/samples/unused-write-only-store/Input.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
1010
$imported = 'some value';
1111
</script>
12-
<div on:click={() => $imported = 'clicked' }/>
12+
<div on:click={() => $imported = 'clicked' } on:keyup={() => $imported = 'clicked' } />

0 commit comments

Comments
 (0)