Skip to content

Commit b1c27c6

Browse files
author
Teranode
committed
nuxt 3 compat
1 parent 3a973fb commit b1c27c6

File tree

5 files changed

+14
-4536
lines changed

5 files changed

+14
-4536
lines changed

package.json

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@nuxt-alt/vuetify",
3-
"version": "1.0.10",
4-
"description": "An alternative module for setting up Vueitfy 3 with nuxt.",
3+
"version": "1.1.0",
4+
"description": "An alternative module for setting up Vuetify 3 with nuxt.",
55
"homepage": "https://github.com/nuxt-alt/vuetify",
66
"author": "Teranode",
77
"keywords": [
@@ -27,25 +27,26 @@
2727
"dev:prepare": "unbuild --stub && nuxi prepare playground"
2828
},
2929
"dependencies": {
30-
"@nuxt/kit": "^3.0.0",
31-
"sass": "^1.56.2",
32-
"vite-plugin-vuetify": "^1.0.1",
30+
"@nuxt/kit": "^3.1.1",
31+
"sass": "^1.58.0",
32+
"vite-plugin-vuetify": "^1.0.2",
3333
"vuetify": "^3.0.5"
3434
},
3535
"devDependencies": {
36-
"unbuild": "latest",
37-
"nuxt": "^3.0.0"
36+
"@types/node": "^18.11.18",
37+
"nuxt": "^3.1.1",
38+
"unbuild": "latest"
3839
},
3940
"repository": {
4041
"type": "git",
4142
"url": "git+https://github.com/nuxt-alt/vuetify.git",
4243
"directory": "@nuxt-alt/vuetify"
4344
},
4445
"bugs": {
45-
"url": "ttps://github.com/nuxt-alt/vuetify/issues"
46+
"url": "https://github.com/nuxt-alt/vuetify/issues"
4647
},
4748
"publishConfig": {
4849
"access": "public"
4950
},
50-
"packageManager": "[email protected].0"
51+
"packageManager": "[email protected].1"
5152
}

src/module.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,7 @@ export default defineNuxtModule({
1111
meta: {
1212
name,
1313
version,
14-
configKey: CONFIG_KEY,
15-
compatibility: {
16-
nuxt: '^3.0.0'
17-
}
14+
configKey: CONFIG_KEY
1815
},
1916
defaults: {
2017
vuetifyOptions: {},
@@ -106,4 +103,4 @@ function setupIcons(nuxt: Nuxt, preset: IconPreset) {
106103
href: cdnPresets[preset]
107104
})
108105
}
109-
}
106+
}

src/runtime/theme.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,4 +422,4 @@ function genCssVariables(theme: InternalThemeDefinition) {
422422
}
423423

424424
return variables
425-
}
425+
}

src/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ declare module '@nuxt/schema' {
3636

3737
declare const NuxtVuetify: NuxtModule<ModuleOptions>
3838

39-
export default NuxtVuetify
39+
export default NuxtVuetify

0 commit comments

Comments
 (0)