Skip to content

Commit

Permalink
refactor: Update dependencies (#363)
Browse files Browse the repository at this point in the history
* refactor(deps): Update dependencies

* fix(vue-i18n): Update i18n bundling settings to fix build
  • Loading branch information
Hanziness authored Mar 11, 2024
1 parent 40ca6d6 commit 3ea1bf8
Show file tree
Hide file tree
Showing 4 changed files with 3,047 additions and 2,860 deletions.
4 changes: 3 additions & 1 deletion nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -231,8 +231,10 @@ export default defineNuxtConfig({
// TODO this is needed to make lazy-loading work properly
runtimeOnly: false,
fullInstall: false,
dropMessageCompiler: true,
ssr: true,
include: [
resolve(dirname(fileURLToPath(import.meta.url)), './i18n/en.json')
resolve(dirname(fileURLToPath(import.meta.url)), './i18n/*.json')
]
}),
ServiceWorkerGenerator({ swPath: 'serviceworker.js' }),
Expand Down
51 changes: 24 additions & 27 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,44 +21,41 @@
},
"dependencies": {
"pinia": "^2.1.7",
"vue": "^3.3.8",
"vue": "^3.4.21",
"vue-tabler-icons": "^2.21.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/eslint-parser": "^7.19.1",
"@babel/runtime-corejs3": "^7.20.1",
"@intlify/unplugin-vue-i18n": "^0.7.3",
"@babel/core": "^7.24.0",
"@babel/eslint-parser": "^7.23.10",
"@babel/runtime-corejs3": "^7.24.0",
"@intlify/unplugin-vue-i18n": "^3.0.1",
"@nuxtjs/eslint-config": "^12.0.0",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@nuxtjs/eslint-module": "^4.1.0",
"@nuxtjs/google-fonts": "^3.1.0",
"@nuxtjs/google-fonts": "^3.1.3",
"@pinia/nuxt": "^0.5.1",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"autoprefixer": "^10.4.16",
"core-js": "^3.33.3",
"eslint": "^8.54.0",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"autoprefixer": "^10.4.18",
"core-js": "^3.36.0",
"eslint": "^8.57.0",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-vue": "^9.18.1",
"nuxt": "^3.8.2",
"postcss": "^8.4.31",
"postcss-html": "^1.5.0",
"sass": "^1.69.5",
"sharp": "^0.32.6",
"eslint-plugin-vue": "^9.22.0",
"nuxt": "^3.10.3",
"postcss": "^8.4.35",
"postcss-html": "^1.6.0",
"sass": "^1.71.1",
"sharp": "^0.33.2",
"standard-version": "^9.5.0",
"stylelint": "^15.11.0",
"stylelint": "^16.2.1",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^34.0.0",
"tailwindcss": "^3.3.5",
"typescript": "^5.3.2",
"vite": "^5.0.2",
"stylelint-config-standard": "^36.0.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.2",
"vite": "^5.1.6",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-stylelint": "^5.2.1",
"vue-i18n": "^9.7.1",
"vite-plugin-stylelint": "^5.3.1",
"vue-i18n": "^9.10.1",
"workbox-build": "^7.0.0"
},
"peerDependencies": {
"vite": "^3.0.0"
}
}
2 changes: 1 addition & 1 deletion plugins/i18n.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { createI18n } from 'vue-i18n'
import { PiniaPluginContext } from 'pinia'
import type { PiniaPluginContext } from 'pinia'

import messages from '@intlify/unplugin-vue-i18n/messages'
import { useSettings } from '~~/stores/settings'
Expand Down
Loading

0 comments on commit 3ea1bf8

Please sign in to comment.