From 733f6a47e81bed5cad6bf26e734e3ae2c22acea8 Mon Sep 17 00:00:00 2001 From: Nicola Spadari Date: Fri, 21 Feb 2025 09:41:02 +0100 Subject: [PATCH] Update node, pnpm and packages versions --- .github/workflows/release.yml | 4 ++-- .nvmrc | 2 +- nuxt.config.ts | 13 ++++++++----- package.json | 22 +++++++++++----------- 4 files changed, 22 insertions(+), 19 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0b64188..ad070fd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,7 +28,7 @@ jobs: - name: setup node uses: actions/setup-node@v4 with: - node-version: 23.5.0 + node-version: 23.8.0 - name: install Rust stable uses: dtolnay/rust-toolchain@stable @@ -46,7 +46,7 @@ jobs: - name: Setup pnpm uses: pnpm/action-setup@v4 with: - version: 9.15.4 + version: 10.4.1 - name: install frontend dependencies run: pnpm install diff --git a/.nvmrc b/.nvmrc index dd6db9f..801a2a0 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -23.5.0 \ No newline at end of file +23.8.0 \ No newline at end of file diff --git a/nuxt.config.ts b/nuxt.config.ts index fbd2051..79fe236 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -46,11 +46,14 @@ export default defineNuxtConfig({ presets: [ { from: "zod", - imports: ["z", { - name: "infer", - as: "zInfer", - type: true - }] + imports: [ + "z", + { + name: "infer", + as: "zInfer", + type: true + } + ] } ] }, diff --git a/package.json b/package.json index 836c2e4..8448d4d 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "type": "module", "version": "1.2.0", "private": true, - "packageManager": "pnpm@9.15.4", + "packageManager": "pnpm@10.4.1", "description": "Starter template for Nuxt 3 and Tauri 2", "author": "Nicola Spadari", "license": "MIT", @@ -23,8 +23,8 @@ "tauri:build:debug": "tauri build --debug" }, "dependencies": { - "@nuxt/ui": "3.0.0-alpha.12", - "@tauri-apps/api": ">=2.2.0", + "@nuxt/ui": "^3.0.0-alpha.13", + "@tauri-apps/api": "^2.2.0", "@tauri-apps/plugin-fs": "^2.2.0", "@tauri-apps/plugin-notification": "^2.2.1", "@tauri-apps/plugin-os": "^2.2.0", @@ -33,16 +33,16 @@ "nuxt": "^3.15.4", "vue": "^3.5.13", "vue-router": "^4.5.0", - "zod": "^3.24.1" + "zod": "^3.24.2" }, "devDependencies": { - "@antfu/eslint-config": "^4.1.1", - "@nuxt/eslint": "^1.0.1", - "@tauri-apps/cli": ">=2.2.7", - "@vueuse/core": "^12.5.0", - "@vueuse/nuxt": "^12.5.0", - "bumpp": "^10.0.2", - "eslint": "9.17.0", + "@antfu/eslint-config": "^4.3.0", + "@nuxt/eslint": "^1.1.0", + "@tauri-apps/cli": "^2.2.7", + "@vueuse/core": "^12.7.0", + "@vueuse/nuxt": "^12.7.0", + "bumpp": "^10.0.3", + "eslint": "^9.20.1", "nuxt-svgo": "^4.0.14", "typescript": "^5.7.3" }