Skip to content

Commit 4cd4616

Browse files
committed
chore: update dependencies
1 parent 29aeeb3 commit 4cd4616

File tree

10 files changed

+20
-21
lines changed

10 files changed

+20
-21
lines changed

bun.lockb

-15.8 KB
Binary file not shown.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
"@nuxtjs/eslint-module": "latest",
1515
"@nuxtjs/supabase": "^1.1.2",
1616
"@nuxtjs/turnstile": "latest",
17-
"@typescript-eslint/parser": "^6.7.3",
1817
"@types/validator": "^13.11.5",
19-
"nuxt": "^3.7.3",
20-
"vuetify-nuxt-module": "^0.5.12"
18+
"@typescript-eslint/parser": "^6.7.3",
19+
"nuxt": "^3.8.0",
20+
"vuetify-nuxt-module": "^0.6"
2121
},
2222
"dependencies": {
2323
"@nuxtjs/eslint-config": "^12.0.0",

pages/game/[id].vue

+6-6
Original file line numberDiff line numberDiff line change
@@ -183,14 +183,14 @@
183183

184184
<script lang="ts">
185185
import { defineComponent } from 'vue'
186-
import { BoardApi, BoardConfig, TheChessboard } from 'vue3-chessboard'
186+
import { BoardApi, TheChessboard } from 'vue3-chessboard'
187+
import type { BoardConfig } from 'vue3-chessboard'
187188
import 'vue3-chessboard/style.css'
188189
import type { Move } from 'chess.js'
189-
import { useSupabaseClient } from '#imports'
190-
import { Database, TableGames, TableIntegrations, TournamentJson } from '~/types/supabase'
191-
import { resultProps, results } from '~/utils/pgn'
192-
import { USCFMemberTournament, USCFTournament } from '~/types/uscf'
193-
import { Integrations } from '~/types/integrations'
190+
import type { Database, TableGames, TableIntegrations, TournamentJson } from '~/types/supabase'
191+
import type { resultProps, results } from '~/utils/pgn'
192+
import type { USCFMemberTournament, USCFTournament } from '~/types/uscf'
193+
import type { Integrations } from '~/types/integrations'
194194
195195
type roundImproved = {
196196
roundNumber: number;

pages/game/new.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@
165165

166166
<script lang="ts">
167167
import { defineComponent } from 'vue'
168-
import { BoardApi, Promotion, TheChessboard } from 'vue3-chessboard'
168+
import { BoardApi, type Promotion, TheChessboard } from 'vue3-chessboard'
169169
import 'vue3-chessboard/style.css'
170170
import type { Move } from 'chess.js'
171171
import { buildDate, resultProps, results } from '~/utils/pgn'

pages/games.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
<script lang="ts">
2626
import { defineComponent } from 'vue'
27-
import { CleanedGame } from '~/utils/games'
27+
import type { CleanedGame } from '~/utils/games'
2828
2929
export default defineComponent({
3030
name: 'games',

pages/profile/[username].vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<script lang="ts">
99
import { defineComponent } from 'vue'
1010
import { useFetch } from '#app'
11-
import { TableUser } from '~/types/supabase'
11+
import type { TableUser } from '~/types/supabase'
1212
1313
export default defineComponent({
1414
name: '[username]',

pages/settings/integrations.vue

+3-3
Original file line numberDiff line numberDiff line change
@@ -166,9 +166,9 @@
166166

167167
<script lang="ts">
168168
import { defineComponent } from 'vue'
169-
import { TableIntegrations } from '~/types/supabase'
170-
import { Integrations } from '~/types/integrations'
171-
import { USCFPlayerSearchResult, USCFPlayerSearchStates } from '~/types/uscf'
169+
import type { TableIntegrations } from '~/types/supabase'
170+
import type { Integrations } from '~/types/integrations'
171+
import { USCFPlayerSearchStates, type USCFPlayerSearchResult } from '~/types/uscf'
172172
173173
export default defineComponent({
174174
name: 'Integrations',

pages/settings/profile.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<script lang="ts">
3434
import { defineComponent } from 'vue'
3535
import { useSupabaseClient } from '#imports'
36-
import { Database, TableUser } from '~/types/supabase'
36+
import type { Database, TableUser } from '~/types/supabase'
3737
3838
export default defineComponent({
3939
name: 'profile',

pages/uscf/member/[id].vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@
160160

161161
<script lang="ts">
162162
import { defineComponent } from 'vue'
163-
import { USCFMember, USCFMemberTournament } from '~/types/uscf'
163+
import type { USCFMember, USCFMemberTournament } from '~/types/uscf'
164164
import { useLazyFetch } from '#app'
165165
166166
export default defineComponent({

pages/uscf/tournament/[id].vue

+3-4
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,9 @@
6060
import { capitalize, defineComponent } from 'vue'
6161
import { useSeoMeta } from 'unhead'
6262
import titleize from 'titleize'
63-
import { USCFTournament } from '~/types/uscf'
64-
import { DataTableHeader } from '~/types/vuetify'
65-
import { useSupabaseClient } from '#imports'
66-
import { Database, TableGames } from '~/types/supabase'
63+
import type { USCFTournament } from '~/types/uscf'
64+
import type { DataTableHeader } from '~/types/vuetify'
65+
import type { Database, TableGames } from '~/types/supabase'
6766
6867
export default defineComponent({
6968
name: '[id]',

0 commit comments

Comments
 (0)