Skip to content

Commit

Permalink
chore: bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
harlan-zw committed Sep 7, 2024
1 parent e0e6723 commit 3522e5e
Show file tree
Hide file tree
Showing 9 changed files with 697 additions and 677 deletions.
2 changes: 1 addition & 1 deletion .playground/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ export default defineNuxtConfig({
},

compatibilityDate: '2024-09-02',
})
})
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,23 +40,23 @@
"test": "true"
},
"dependencies": {
"@nuxt/kit": "^3.13.0",
"@nuxt/kit": "^3.13.1",
"lodash-es": "^4.17.21",
"packrup": "^0.1.2",
"radix3": "^1.1.2"
},
"devDependencies": {
"@antfu/eslint-config": "^3.0.0",
"@antfu/eslint-config": "^3.3.2",
"@nuxt/module-builder": "^0.8.3",
"@nuxt/schema": "^3.13.0",
"@nuxt/schema": "^3.13.1",
"@nuxt/test-utils": "^3.14.1",
"@nuxt/types": "^2.18.1",
"@types/fs-extra": "^11.0.4",
"@types/lodash-es": "^4.17.12",
"@vitest/ui": "^2.0.5",
"bumpp": "^9.5.2",
"eslint": "^9.9.1",
"nuxt": "^3.13.0",
"eslint": "^9.10.0",
"nuxt": "^3.13.1",
"typescript": "^5.5.4",
"upath": "^2.0.1",
"vitest": "^2.0.5"
Expand Down
1,344 changes: 682 additions & 662 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import {
defineNuxtModule,
} from '@nuxt/kit'
import { template } from 'lodash-es'
import type { EventTypes, Mode } from './runtime/types'
import { extendTypes } from './kit'
import type { EventTypes, Mode } from './runtime/types'

export interface ModuleOptions {
/**
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/components/DelayHydration.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Comment, Fragment, defineAsyncComponent, h } from 'vue'
import { Comment, defineAsyncComponent, Fragment, h } from 'vue'

export default defineAsyncComponent({
loader() {
Expand Down
6 changes: 3 additions & 3 deletions src/runtime/nitro-plugin.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { packString } from 'packrup'
import { useRuntimeConfig } from '#imports'
import { debug, exclude, include, mode, replayScript, script } from '#nuxt-delay-hydration/api'
import { defineNitroPlugin } from 'nitropack/dist/runtime/plugin'
import { packString } from 'packrup'
import { createFilter } from './util'
import { debug, exclude, include, mode, replayScript, script } from '#nuxt-delay-hydration/api'
import { useRuntimeConfig } from '#imports'

const SCRIPT_REGEX = /<script(.*?)>/g

Expand Down
4 changes: 2 additions & 2 deletions src/runtime/nuxt-plugin.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { useRequestEvent, useState } from '#imports'
import { exclude, include, mode } from '#nuxt-delay-hydration/api'
import { defineNuxtPlugin } from 'nuxt/app'
import { createFilter } from './util'
import type { Mode } from './types'
import { exclude, include, mode } from '#nuxt-delay-hydration/api'
import { useRequestEvent, useState } from '#imports'

export default defineNuxtPlugin(async (nuxtApp) => {
const hydrationMode = useState<Mode>('nuxt-delay-hydration-mode', () => mode)
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/pokemon/windi.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
**
** Docs: https://next.windicss.org/guide/configuration.html
*/
import { defineConfig } from 'windicss/helpers'
import defaultTheme from 'windicss/defaultTheme'
import { defineConfig } from 'windicss/helpers'

export default defineConfig({
theme: {
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/shared/plugins/webVitals.client.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Plugin } from '@nuxt/types'
import { getCLS, getFCP, getFID, getLCP } from 'web-vitals'
import type { Plugin } from '@nuxt/types'
import type { ReportHandler } from 'web-vitals/dist/modules/types'

const webVitalsPlugin: Plugin = (ctx) => {
Expand Down

0 comments on commit 3522e5e

Please sign in to comment.