Skip to content

chore(deps): update nuxt #1312

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,560 changes: 801 additions & 759 deletions package-lock.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@fullhuman/postcss-purgecss": "7.0.2",
"@nuxt/eslint": "1.4.1",
"@nuxt/eslint": "1.5.2",
"@nuxt/module-builder": "1.0.1",
"@nuxt/webpack-builder": "3.17.5",
"@nuxt/webpack-builder": "3.17.6",
"@types/consola": "2.2.8",
"@types/finalhandler": "1.2.4",
"@types/jsdom": "21.1.7",
Expand All @@ -97,7 +97,7 @@
"jsdom": "26.1.0",
"lint-staged": "16.1.2",
"markdown-it-inline-comments": "1.0.1",
"nuxt": "3.17.5",
"nuxt": "3.17.6",
"playwright": "1.53.2",
"postcss-functions": "4.0.2",
"postcss-html": "1.8.0",
Expand Down
3 changes: 2 additions & 1 deletion playground/components/elements/ScrollItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@

<script setup lang="ts">
import type { FontFamily, FontStyle, FontWeight } from '#build/types/booster';
import { useBoosterFonts, type PropType } from '#imports';
import { useBoosterFonts } from '#imports';
import type { PropType } from '#imports';

const { $getFont } = useBoosterFonts();

Expand Down
3 changes: 2 additions & 1 deletion src/runtime/components/BoosterImage/Base.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ import {
useHead,
useAttrs
} from '#imports';
import { ref, computed, markRaw, type Raw } from 'vue';
import { ref, computed, markRaw } from 'vue';
import type { Raw } from 'vue';
import props from './props';
import type { CrossOrigin } from '../../../module';

Expand Down
5 changes: 2 additions & 3 deletions src/runtime/components/BoosterPicture/Base.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,8 @@ import { useBoosterCritical, useImage, useHead, useNuxtApp } from '#imports';
import { ref, computed } from 'vue';

import BaseImage from '#booster/components/BoosterImage/Base.vue';
import SourceList, {
type ClassNames
} from '#booster/components/BoosterPicture/classes/SourceList';
import SourceList from '#booster/components/BoosterPicture/classes/SourceList';
import type { ClassNames } from '#booster/components/BoosterPicture/classes/SourceList';
import PictureSource from '#booster/components/BoosterPicture/Source.vue';
import props from './props';
import type Source from '../BoosterImage/classes/Source';
Expand Down
9 changes: 2 additions & 7 deletions src/runtime/components/BoosterVimeo/Base.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,8 @@ import { ref, computed, markRaw, watch, onMounted, onUnmounted } from 'vue';
import type { Script } from '@unhead/vue';

import DefaultButton from '../Button.vue';
import {
load,
ready as apiReady,
VimeoApiPlayerState,
type VimeoApiPlayer,
type VimeoApiResponse
} from './utils/loader';
import { load, ready as apiReady, VimeoApiPlayerState } from './utils/loader';
import type { VimeoApiPlayer, VimeoApiResponse } from './utils/loader';
import Vimeo from './classes/Vimeo';
import { isTouchSupported } from '#booster/utils/browser';
import BoosterPicture from '#booster/components/BoosterPicture.vue';
Expand Down
3 changes: 2 additions & 1 deletion src/runtime/components/BoosterVimeo/classes/Vimeo.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { ready, type VimeoApi, type VimeoApiPlayer } from '../utils/loader';
import { ready } from '../utils/loader';
import type { VimeoApi, VimeoApiPlayer } from '../utils/loader';

export default class Vimeo {
api?: VimeoApi;
Expand Down
3 changes: 2 additions & 1 deletion test/nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// import type { ModuleOptions } from '../src/types/module';
import { defineNuxtConfig, type NuxtConfig } from 'nuxt/config';
import { defineNuxtConfig } from 'nuxt/config';
import type { NuxtConfig } from 'nuxt/config';
import { createResolver } from '@nuxt/kit';

import { join, resolve } from 'pathe';
Expand Down
3 changes: 2 additions & 1 deletion test/tests/browser.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { chromium, type Page } from 'playwright';
import { chromium } from 'playwright';
import type { Page } from 'playwright';
import { afterAll, describe, it, expect } from 'vitest';
import { joinURL } from 'ufo';
import type { TestRuntime } from '../types';
Expand Down