Skip to content

Commit

Permalink
chore: upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
johannschopplich committed Aug 22, 2024
1 parent 2e6a212 commit d99e0c4
Show file tree
Hide file tree
Showing 6 changed files with 1,824 additions and 2,422 deletions.
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@

// Silent the stylistic rules in you IDE, but still auto-fix them
"eslint.rules.customizations": [
{ "rule": "@stylistic/*", "severity": "off" },
{ "rule": "style/*", "severity": "off" },
{ "rule": "format/*", "severity": "off" },
{ "rule": "*-indent", "severity": "off" },
{ "rule": "*-spacing", "severity": "off" },
{ "rule": "*-spaces", "severity": "off" },
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@

# @byjohann/nuxt-i18n

[![npm version](https://img.shields.io/npm/v/@byjohann/nuxt-i18n?color=a1b858&label=)](https://www.npmjs.com/package/@byjohann/nuxt-i18n)

[Nuxt](https://nuxt.com) module for internationalization with locale auto-imports & localized routing.

This module's intention is not to provide a full-blown solution for internationalization like [@nuxtjs/i18n](https://i18n.nuxtjs.org/), but offer a lean, effective and lightweight set of tools to cover your needs without the bloat of a full-blown solution.
This module's intention is not to provide a full-blown solution for internationalization like [@nuxtjs/i18n](https://i18n.nuxtjs.org), but offer a lean, effective and lightweight set of tools to cover your needs without the bloat of a full-blown solution.

## Key Features

Expand Down
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@byjohann/nuxt-i18n",
"type": "module",
"version": "1.0.7",
"packageManager": "pnpm@9.4.0",
"packageManager": "pnpm@9.8.0",
"description": "Minimal module for i18n with locale auto-imports & localized routing",
"author": "Johann Schopplich <hello@johannschopplich.com>",
"license": "MIT",
Expand Down Expand Up @@ -41,20 +41,20 @@
},
"dependencies": {
"@byjohann/vue-i18n": "^1.3.0",
"@nuxt/kit": "^3.12.2",
"@nuxt/kit": "^3.13.0",
"knitwork": "^1.1.0",
"pathe": "^1.1.2"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.3.13",
"@nuxt/module-builder": "^0.8.1",
"@nuxt/test-utils": "^3.13.1",
"@types/node": "^20.14.9",
"bumpp": "^9.4.1",
"eslint": "^9.6.0",
"nuxt": "^3.12.2",
"typescript": "^5.4.5",
"vitest": "^1.6.0",
"vue-tsc": "^2.0.24"
"@nuxt/eslint-config": "^0.5.2",
"@nuxt/module-builder": "^0.8.3",
"@nuxt/test-utils": "^3.14.1",
"@types/node": "^20.16.1",
"bumpp": "^9.5.2",
"eslint": "^9.9.0",
"nuxt": "^3.13.0",
"typescript": "^5.5.4",
"vitest": "^2.0.5",
"vue-tsc": "^2.0.29"
}
}
20 changes: 12 additions & 8 deletions playground/app.vue
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
<template>
<Head>
<Title>@byjohann/nuxt-i18n</Title>
<Link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@exampledev/new.css@1.1.2/new.min.css"
/>
</Head>
<script setup lang="ts">
useHead({
title: '@byjohann/nuxt-i18n',
link: [
{
rel: 'stylesheet',
href: 'https://cdn.jsdelivr.net/npm/@exampledev/new.css@1.1.2/new.min.css',
},
],
})
</script>

<template>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
Expand Down
Loading

0 comments on commit d99e0c4

Please sign in to comment.