Skip to content

Commit

Permalink
update tests and deps
Browse files Browse the repository at this point in the history
  • Loading branch information
victorgarciaesgi committed Feb 12, 2024
1 parent d234bc2 commit eec42f2
Show file tree
Hide file tree
Showing 37 changed files with 3,270 additions and 1,642 deletions.
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ All notable changes to this project will be documented in this file. See [standa
New features

- `ignoreRoutes` option now support Globs pattern
- Simplification of `NuxtRoute` type, removing the need for generics

Fixs

Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
},
"devDependencies": {
"@nuxt-themes/docus": "1.15.0",
"nuxt": "3.9.0"
"nuxt": "3.10.1"
}
}
60 changes: 30 additions & 30 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,55 +64,55 @@
"prettier": "^2.5.x || 3.x"
},
"dependencies": {
"@nuxt/kit": "3.9.0",
"@nuxt/kit": "3.10.1",
"chalk": "5.3.0",
"defu": "6.1.3",
"defu": "6.1.4",
"globby": "14.0.1",
"lodash-es": "4.17.21",
"log-symbols": "6.0.0",
"mkdirp": "3.0.1",
"nanoid": "5.0.4",
"pathe": "1.1.1",
"prettier": "3.1.1",
"globby": "14.0.0"
"nanoid": "5.0.5",
"pathe": "1.1.2",
"prettier": "3.2.5"
},
"devDependencies": {
"@intlify/core-base": "9.8.0",
"@intlify/message-compiler": "9.8.0",
"@intlify/shared": "9.8.0",
"@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.10.0",
"@nuxt/devtools": "1.0.6",
"@nuxt/content": "2.12.0",
"@nuxt/devtools": "1.0.8",
"@nuxt/module-builder": "0.5.5",
"@nuxt/schema": "3.9.0",
"@nuxt/test-utils": "3.9.0",
"@nuxt/types": "2.17.2",
"@nuxt/schema": "3.10.1",
"@nuxt/test-utils": "3.11.0",
"@nuxt/types": "2.17.3",
"@nuxtjs/eslint-config-typescript": "12.1.0",
"@nuxtjs/i18n": "8.0.0",
"@nuxtjs/i18n": "8.1.0",
"@nuxtjs/web-vitals": "0.2.6",
"@playwright/test": "1.40.1",
"@playwright/test": "1.41.2",
"@types/lodash-es": "4.17.12",
"@types/node": "20.10.6",
"@typescript-eslint/eslint-plugin": "6.17.0",
"@typescript-eslint/parser": "6.17.0",
"@vue/test-utils": "2.4.3",
"bumpp": "9.2.1",
"changelogithub": "0.13.2",
"@types/node": "20.11.17",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"@vue/test-utils": "2.4.4",
"bumpp": "9.3.0",
"changelogithub": "0.13.3",
"cross-env": "7.0.3",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-vue": "9.19.2",
"nuxt": "3.9.0",
"eslint-plugin-vue": "9.21.1",
"nuxt": "3.10.1",
"nuxt-seo-kit": "1.3.13",
"playwright": "1.40.1",
"playwright": "1.41.2",
"prettier": "3.1.1",
"tsd": "0.30.3",
"tsd": "0.30.4",
"tslib": "2.6.2",
"typescript": "5.3.3",
"vitest": "1.1.1",
"vue": "3.4.5",
"vue-eslint-parser": "9.3.2",
"vue-i18n": "9.8.0",
"vitest": "1.2.2",
"vue": "3.4.18",
"vue-eslint-parser": "9.4.2",
"vue-i18n": "9.9.1",
"vue-i18n-routing": "1.2.0",
"vue-router": "4.2.5",
"vue-tsc": "1.8.27",
Expand Down
5 changes: 5 additions & 0 deletions playground/nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { fileURLToPath } from 'url';

export default defineNuxtConfig({
extends: ['nuxt-seo-kit'],
modules: ['nuxt-typed-router', '@nuxtjs/i18n', '@nuxt/content'],
Expand Down Expand Up @@ -32,4 +34,7 @@ export default defineNuxtConfig({
},
],
},
alias: {
$$: fileURLToPath(new URL('../src', import.meta.url)),
},
});
Loading

0 comments on commit eec42f2

Please sign in to comment.