Skip to content

Commit 8fa90cd

Browse files
authored
Merge pull request #1312 from basics/renovate/nuxt
chore(deps): update nuxt
2 parents ac33743 + 4ebf117 commit 8fa90cd

File tree

9 files changed

+818
-777
lines changed

9 files changed

+818
-777
lines changed

package-lock.json

Lines changed: 801 additions & 759 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@
7070
"@commitlint/cli": "19.8.1",
7171
"@commitlint/config-conventional": "19.8.1",
7272
"@fullhuman/postcss-purgecss": "7.0.2",
73-
"@nuxt/eslint": "1.4.1",
73+
"@nuxt/eslint": "1.5.2",
7474
"@nuxt/module-builder": "1.0.1",
75-
"@nuxt/webpack-builder": "3.17.5",
75+
"@nuxt/webpack-builder": "3.17.6",
7676
"@types/consola": "2.2.8",
7777
"@types/finalhandler": "1.2.4",
7878
"@types/jsdom": "21.1.7",
@@ -97,7 +97,7 @@
9797
"jsdom": "26.1.0",
9898
"lint-staged": "16.1.2",
9999
"markdown-it-inline-comments": "1.0.1",
100-
"nuxt": "3.17.5",
100+
"nuxt": "3.17.6",
101101
"playwright": "1.53.2",
102102
"postcss-functions": "4.0.2",
103103
"postcss-html": "1.8.0",

playground/components/elements/ScrollItem.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99

1010
<script setup lang="ts">
1111
import type { FontFamily, FontStyle, FontWeight } from '#build/types/booster';
12-
import { useBoosterFonts, type PropType } from '#imports';
12+
import { useBoosterFonts } from '#imports';
13+
import type { PropType } from '#imports';
1314
1415
const { $getFont } = useBoosterFonts();
1516

src/runtime/components/BoosterImage/Base.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ import {
3030
useHead,
3131
useAttrs
3232
} from '#imports';
33-
import { ref, computed, markRaw, type Raw } from 'vue';
33+
import { ref, computed, markRaw } from 'vue';
34+
import type { Raw } from 'vue';
3435
import props from './props';
3536
import type { CrossOrigin } from '../../../module';
3637

src/runtime/components/BoosterPicture/Base.vue

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,8 @@ import { useBoosterCritical, useImage, useHead, useNuxtApp } from '#imports';
2424
import { ref, computed } from 'vue';
2525
2626
import BaseImage from '#booster/components/BoosterImage/Base.vue';
27-
import SourceList, {
28-
type ClassNames
29-
} from '#booster/components/BoosterPicture/classes/SourceList';
27+
import SourceList from '#booster/components/BoosterPicture/classes/SourceList';
28+
import type { ClassNames } from '#booster/components/BoosterPicture/classes/SourceList';
3029
import PictureSource from '#booster/components/BoosterPicture/Source.vue';
3130
import props from './props';
3231
import type Source from '../BoosterImage/classes/Source';

src/runtime/components/BoosterVimeo/Base.vue

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,8 @@ import { ref, computed, markRaw, watch, onMounted, onUnmounted } from 'vue';
3333
import type { Script } from '@unhead/vue';
3434
3535
import DefaultButton from '../Button.vue';
36-
import {
37-
load,
38-
ready as apiReady,
39-
VimeoApiPlayerState,
40-
type VimeoApiPlayer,
41-
type VimeoApiResponse
42-
} from './utils/loader';
36+
import { load, ready as apiReady, VimeoApiPlayerState } from './utils/loader';
37+
import type { VimeoApiPlayer, VimeoApiResponse } from './utils/loader';
4338
import Vimeo from './classes/Vimeo';
4439
import { isTouchSupported } from '#booster/utils/browser';
4540
import BoosterPicture from '#booster/components/BoosterPicture.vue';

src/runtime/components/BoosterVimeo/classes/Vimeo.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { ready, type VimeoApi, type VimeoApiPlayer } from '../utils/loader';
1+
import { ready } from '../utils/loader';
2+
import type { VimeoApi, VimeoApiPlayer } from '../utils/loader';
23

34
export default class Vimeo {
45
api?: VimeoApi;

test/nuxt.config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// import type { ModuleOptions } from '../src/types/module';
2-
import { defineNuxtConfig, type NuxtConfig } from 'nuxt/config';
2+
import { defineNuxtConfig } from 'nuxt/config';
3+
import type { NuxtConfig } from 'nuxt/config';
34
import { createResolver } from '@nuxt/kit';
45

56
import { join, resolve } from 'pathe';

test/tests/browser.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { chromium, type Page } from 'playwright';
1+
import { chromium } from 'playwright';
2+
import type { Page } from 'playwright';
23
import { afterAll, describe, it, expect } from 'vitest';
34
import { joinURL } from 'ufo';
45
import type { TestRuntime } from '../types';

0 commit comments

Comments
 (0)