Skip to content

Commit

Permalink
fix: nuxt version & import type
Browse files Browse the repository at this point in the history
  • Loading branch information
KieranAltman committed Oct 24, 2023
1 parent 2ab13db commit 18b1fa7
Show file tree
Hide file tree
Showing 4 changed files with 537 additions and 139 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@
"test:watch": "vitest watch"
},
"dependencies": {
"@nuxt/kit": "^3.7.4"
"@nuxt/kit": "^3.8.0"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^0.2.0",
"@nuxt/module-builder": "^0.5.2",
"@nuxt/schema": "^3.7.4",
"@nuxt/test-utils": "^3.7.4",
"@nuxt/schema": "^3.8.0",
"@nuxt/test-utils": "^3.8.0",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@types/node": "^18.18.1",
"changelogen": "^0.5.5",
Expand All @@ -45,7 +45,7 @@
"eslint-plugin-prettier": "^5.0.1",
"less": "^4.2.0",
"less-loader": "^11.1.3",
"nuxt": "^3.7.4",
"nuxt": "^3.8.0",
"prettier": "^3.0.3",
"vitest": "^0.33.0"
}
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/components/transition-scale.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import { Transition, TransitionGroup } from 'vue-demi'
import { getMatrix, clamp } from '../utils'
import { useBaseTransition } from '../composables'
import { NuxtTransitionEvents, NuxtTransitionAxis } from '../types'
import type { NuxtTransitionEvents, NuxtTransitionAxis } from '../types'
const props = withDefaults(
defineProps<{
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/components/transition-slide.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import { Transition, TransitionGroup } from 'vue-demi'
import { getMatrix } from '../utils'
import { useBaseTransition } from '../composables'
import { NuxtTransitionEvents } from '../types'
import type { NuxtTransitionEvents } from '../types'
const props = withDefaults(
defineProps<{
Expand Down
Loading

0 comments on commit 18b1fa7

Please sign in to comment.