Skip to content

Commit 9f37ca0

Browse files
fix: resolve ESLint issues and update GitHub workflow configuration
1 parent 475dae5 commit 9f37ca0

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,3 @@ jobs:
4040

4141
- name: Playground prepare
4242
run: npm run dev:prepare
43-
44-
- name: Test
45-
run: npm run test

playground/app.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
<template>
22
<div>
33
<h1>Nuxt iOS WebKit Active CSS Pseudo</h1>
4-
<button @click="onClick">Button</button>
4+
<button @click="onClick">
5+
Button
6+
</button>
57
</div>
68
</template>
79

src/runtime/plugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
import { defineNuxtPlugin } from '#app'
22

3-
export default defineNuxtPlugin(() => document.addEventListener('touchstart', () => {}, { passive: true }))
3+
export default defineNuxtPlugin(() => document.addEventListener('touchstart', () => {}, { passive: true }))

0 commit comments

Comments
 (0)