Skip to content

Commit 8f67d66

Browse files
authored
fix(deps): update dependencies (#31)
* update dependencies * fix typecheck errors * keep videos and traces locally
1 parent 50c015b commit 8f67d66

File tree

5 files changed

+3584
-4224
lines changed

5 files changed

+3584
-4224
lines changed

app.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default defineAppConfig({
44
},
55
ui: {
66
button: {
7-
default: {
7+
defaultVariants: {
88
size: 'md',
99
},
1010
},

nuxt.config.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,5 @@ export default defineNuxtConfig({
3131
],
3232
strategy: 'no_prefix',
3333
defaultLocale: 'en',
34-
bundle: {
35-
optimizeTranslationDirective: false, // recommend to disable. see https://github.com/nuxt-modules/i18n/issues/3238#issuecomment-2672492536
36-
},
3734
},
3835
});

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -19,22 +19,22 @@
1919
"playwright:install": "playwright install && sudo apt-get install libatk1.0-0 libatk-bridge2.0-0 libcups2 libxkbcommon0 libatspi2.0-0 libxcomposite1 libxdamage1 libxfixes3 libxrandr2 libgbm1"
2020
},
2121
"dependencies": {
22-
"@nuxt/ui": "3.1.0",
23-
"@nuxtjs/i18n": "9.5.5",
24-
"nuxt": "3.17.5",
25-
"tailwindcss": "4.1.10"
22+
"@nuxt/ui": "3.3.3",
23+
"@nuxtjs/i18n": "10.0.6",
24+
"nuxt": "4.1.1",
25+
"tailwindcss": "4.1.13"
2626
},
2727
"devDependencies": {
28-
"@antfu/eslint-config": "4.14.1",
29-
"@cspell/dict-de-de": "4.1.0",
30-
"@nuxt/test-utils": "3.19.1",
31-
"@playwright/test": "1.53.0",
28+
"@antfu/eslint-config": "5.3.0",
29+
"@cspell/dict-de-de": "4.1.2",
30+
"@nuxt/test-utils": "3.19.2",
31+
"@playwright/test": "1.55.0",
3232
"@vue/test-utils": "2.4.6",
33-
"cspell": "9.1.1",
34-
"eslint": "9.29.0",
33+
"cspell": "9.2.1",
34+
"eslint": "9.35.0",
3535
"eslint-plugin-format": "1.0.1",
3636
"happy-dom": "18.0.1",
37-
"vitest": "3.2.3",
38-
"vue-tsc": "2.2.10"
37+
"vitest": "3.2.4",
38+
"vue-tsc": "3.0.6"
3939
}
4040
}

playwright.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ export default defineConfig<ConfigOptions>({
1111
reporter: [['html', { outputFolder: 'playwright-report' }]],
1212
testMatch: '**/*.test.ts',
1313
use: {
14-
video: 'retain-on-failure',
15-
trace: 'retain-on-failure',
14+
video: process.env.CI ? 'retain-on-failure' : 'on',
15+
trace: process.env.CI ? 'retain-on-failure' : 'on',
1616
},
1717
expect: {
1818
toHaveScreenshot: {

0 commit comments

Comments
 (0)