Skip to content

Commit

Permalink
fix: removed vue-i18n-routing and adapted api
Browse files Browse the repository at this point in the history
  • Loading branch information
victorgarciaesgi committed Feb 20, 2024
1 parent 68d8370 commit 34f1442
Show file tree
Hide file tree
Showing 16 changed files with 3,245 additions and 3,060 deletions.
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"vue/multi-word-component-names": "off",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/no-unused-vars": ["off"],
"@typescript-eslint/consistent-type-import": "on",
"@typescript-eslint/consistent-type-imports": "warn",
"import/named": "off"
}
}
4 changes: 2 additions & 2 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"preview": "nuxi preview"
},
"devDependencies": {
"@nuxt-themes/docus": "1.14.3",
"nuxt": "3.8.1"
"@nuxt-themes/docus": "1.15.0",
"nuxt": "3.10.2"
}
}
69 changes: 34 additions & 35 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"homepage": "https://nuxt-typed-router.vercel.app/",
"repository": {
"type": "git",
"url": "git+https://victorgarciaesgi@github.com/victorgarciaesgi/nuxt-typed-router.git"
"url": "git+https://github.com/victorgarciaesgi/nuxt-typed-router.git"
},
"author": {
"name": "Victor Garcia",
Expand All @@ -63,9 +63,9 @@
"prettier": "^2.5.x || 3.x"
},
"dependencies": {
"@nuxt/kit": "3.8.2",
"@nuxt/kit": "3.10.2",
"chalk": "5.3.0",
"defu": "6.1.3",
"defu": "6.1.4",
"lodash-es": "4.17.21",
"log-symbols": "6.0.0",
"mkdirp": "3.0.1",
Expand All @@ -74,43 +74,42 @@
"prettier": "3.1.0"
},
"devDependencies": {
"@nuxt/devtools": "1.0.3",
"@nuxt/schema": "3.8.2",
"@nuxt/module-builder": "0.5.4",
"@nuxt/test-utils": "3.8.1",
"@nuxt/types": "2.17.2",
"@intlify/core-base": "9.9.1",
"@intlify/message-compiler": "9.9.1",
"@intlify/shared": "9.9.1",
"@intlify/vue-i18n-bridge": "1.1.0",
"@intlify/vue-router-bridge": "1.1.0",
"@nuxt/content": "2.12.0",
"@nuxt/devtools": "1.0.8",
"@nuxt/module-builder": "0.5.5",
"@nuxt/schema": "3.10.2",
"@nuxt/test-utils": "3.11.0",
"@nuxt/types": "2.17.3",
"@nuxtjs/eslint-config-typescript": "12.1.0",
"@nuxt/content": "2.9.0",
"@nuxtjs/i18n": "8.0.0-rc.5",
"@nuxtjs/i18n": "8.1.1",
"@nuxtjs/web-vitals": "0.2.6",
"@playwright/test": "1.41.2",
"@types/lodash-es": "4.17.12",
"@types/node": "20.10.0",
"@typescript-eslint/eslint-plugin": "6.12.0",
"@typescript-eslint/parser": "6.12.0",
"@vue/test-utils": "2.4.2",
"bumpp": "9.2.0",
"changelogithub": "0.13.2",
"@types/node": "20.11.19",
"@typescript-eslint/eslint-plugin": "7.0.2",
"@typescript-eslint/parser": "7.0.2",
"@vue/test-utils": "2.4.4",
"bumpp": "9.3.0",
"changelogithub": "0.13.3",
"cross-env": "7.0.3",
"eslint": "8.54.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-vue": "9.18.1",
"nuxt": "3.8.2",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-vue": "9.21.1",
"nuxt": "3.10.2",
"nuxt-seo-kit": "1.3.13",
"playwright": "1.40.1",
"@playwright/test": "1.40.1",
"tsd": "0.29.0",
"typescript": "5.3.2",
"vitest": "0.34.6",
"vue": "3.3.10",
"vue-eslint-parser": "9.3.2",
"playwright": "1.41.2",
"tsd": "0.30.5",
"typescript": "5.3.3",
"vitest": "1.3.1",
"vue": "3.4.19",
"vue-eslint-parser": "9.4.2",
"vue-i18n": "9.9.1",
"vue-router": "4.2.5",
"vue-tsc": "1.8.22",
"vue-i18n": "9.8.0",
"@intlify/shared": "9.8.0",
"@intlify/message-compiler": "9.8.0",
"@intlify/core-base": "9.8.0",
"@intlify/vue-router-bridge": "1.1.0",
"@intlify/vue-i18n-bridge": "1.1.0",
"vue-i18n-routing": "1.2.0"
"vue-tsc": "1.8.27"
}
}
1 change: 1 addition & 0 deletions playground/src/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
<script setup lang="ts">
import type { TypedRouteLocationRawFromName, helpers, TypedRouteLocation } from '@typed-router';
import TestLink from '~/components/TestLink.vue';
import { useLocalePath } from '#imports';
// definePageMeta({
// redirect: (route) => helpers.route({ name: 'admin-id', params: { id: 1 } }),
// });
Expand Down
Loading

0 comments on commit 34f1442

Please sign in to comment.