Skip to content

Commit

Permalink
chore(deps): bump the major group across 1 directory with 3 updates (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Nov 6, 2024
1 parent 5dbc350 commit 1a17bb0
Show file tree
Hide file tree
Showing 19 changed files with 197 additions and 116 deletions.
2 changes: 1 addition & 1 deletion apps/demo-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"@vueuse/core": "^11.2.0",
"pinia": "^2.2.5",
"sit-onyx": "workspace:^",
"vue-i18n": "^9.14.1",
"vue-i18n": "^10.0.4",
"vue-router": "^4.4.5"
},
"devDependencies": {
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion apps/docs/src/development/packages/nuxt.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ export default defineNuxtConfig({
modules: ["@sit-onyx/nuxt", "@nuxtjs/i18n"],
i18n: {
defaultLocale: "en_US",
langDir: "./i18n",
locales: [
{ code: "en_US", file: "en-US.json", name: "English (US)" },
{ code: "de", file: "de-DE.json", name: "Deutsch" },
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"@vue/tsconfig": "~0.5.1",
"eslint": "^9.13.0",
"eslint-plugin-compat": "^6.0.1",
"eslint-plugin-playwright": "^1.8.3",
"eslint-plugin-playwright": "^2.0.0",
"eslint-plugin-vue": "^9.30.0",
"eslint-plugin-vue-scoped-css": "^2.8.1",
"eslint-plugin-vuejs-accessibility": "^2.4.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/nuxt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@
"@nuxt/module-builder": "~0.8.4",
"@nuxt/schema": "^3.13.2",
"@nuxt/test-utils": "^3.14.4",
"@nuxtjs/i18n": "^8.5.5",
"@nuxtjs/i18n": "^9.0.0",
"nuxt": "^3.13.2",
"vue-i18n": "^9.14.1"
"vue-i18n": "^10.0.4"
},
"peerDependencies": {
"sit-onyx": "workspace:^"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 1 addition & 2 deletions packages/nuxt/playground/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,14 @@ export default defineNuxtConfig({
i18n: {
defaultLocale: "en-US",
lazy: true,
langDir: "./i18n",
locales: [
// en-US will inherit the default translations for onyx by default as en-US is a supported language
{ code: "en-US", file: "en-US.json", name: "English (US)" },
// de-DE is also a languages with translations from onyx so it will inherit those too. In addition de-DE overwrites some of them to fit the project
{ code: "de-DE", file: "de-DE.json", name: "Deutsch" },
// "tlh" is the bcd 47 code for Klingon -> This is a custom translation that doesn't exist in onyx and therefor the project needs to provide them
{ code: "tlh", file: "tlh.json", name: "tlhIngan" },
// int is a fictional language code we might want to support in our app, as the language is not supported by onyx we will create it inside the project and use the onyx translations for de-DE. (See ./i18n/int.ts)
// int is a fictional language code we might want to support in our app, as the language is not supported by onyx we will create it inside the project and use the onyx translations for de-DE. (See ./i18n/locales/int.ts)
{ code: "int", language: "de-DE", file: "int.ts", name: "International (DE)" },
],
},
Expand Down
3 changes: 1 addition & 2 deletions packages/nuxt/test/fixtures/i18n/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,14 @@ export default defineNuxtConfig({
strategy: "prefix",
defaultLocale: "en-US",
lazy: true,
langDir: "./locales",
locales: [
// en-US will inherit the default translations for onyx by default as en-US is a supported language
{ code: "en-US", language: "en-US", file: "en-US.json", name: "English (US)" },
// de-DE is also a languages with translations from onyx so it will inherit those too. In addition de-DE overwrites some of them to fit the project
{ code: "de-DE", language: "de-DE", file: "de-DE.json", name: "Deutsch" },
// "tlh" is the bcd 47 code for Klingon -> This is a custom translation that doesn't exist in onyx and therefor the project needs to provide them
{ code: "tlh", language: "tlh", file: "tlh.json", name: "tlhIngan" },
// int is a fictional language code we might want to support in our app, as the language is not supported by onyx we will create it inside the project and use the onyx translations for de-DE. (See ./i18n/de-DE-onyx.ts)
// int is a fictional language code we might want to support in our app, as the language is not supported by onyx we will create it inside the project and use the onyx translations for de-DE. (See ./i18n/locales/de-DE-onyx.ts)
{
code: "int",
language: "de-DE",
Expand Down
Loading

0 comments on commit 1a17bb0

Please sign in to comment.