1 Commits

Author SHA1 Message Date
70cdaa2e12 Update dependency vue-router to v5
Some checks failed
Build Check / build (pull_request) Failing after 6s
2026-04-02 16:08:46 +00:00
5 changed files with 769 additions and 388 deletions

View File

@@ -9,15 +9,17 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v6 uses: actions/checkout@v4
- name: Install pnpm - name: Install pnpm
uses: pnpm/action-setup@v5 uses: pnpm/action-setup@v4
with:
version: 10
- name: Setup Node.js - name: Setup Node.js
uses: actions/setup-node@v6 uses: actions/setup-node@v4
with: with:
node-version: 24 node-version: 22
cache: 'pnpm' cache: 'pnpm'
- name: Install dependencies - name: Install dependencies

View File

@@ -1,4 +1,4 @@
FROM node:24-alpine AS builder FROM node:22-alpine AS builder
WORKDIR /pomoday WORKDIR /pomoday

View File

@@ -30,18 +30,18 @@
"sherlockjs": "^1.4.2", "sherlockjs": "^1.4.2",
"uuid": "^13.0.0", "uuid": "^13.0.0",
"vue": "^3.5.28", "vue": "^3.5.28",
"vue-router": "^4.6.4" "vue-router": "^5.0.0"
}, },
"devDependencies": { "devDependencies": {
"@antfu/eslint-config": "^8.0.0", "@antfu/eslint-config": "^8.0.0",
"@tailwindcss/vite": "^4.2.0", "@tailwindcss/vite": "^4.2.0",
"@tauri-apps/cli": "^2", "@tauri-apps/cli": "^2",
"@vitejs/plugin-vue": "^6.0.4", "@vitejs/plugin-vue": "^6.0.4",
"eslint": "^10.0.0", "eslint": "^9.39.2",
"eslint-plugin-format": "^1.4.0", "eslint-plugin-format": "^1.4.0",
"tailwindcss": "^4.2.0", "tailwindcss": "^4.2.0",
"typescript": "~5.9.3", "typescript": "~5.9.3",
"vite": "^8.0.0", "vite": "^7.3.1",
"vue-tsc": "^2.1.10" "vue-tsc": "^2.1.10"
}, },
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319" "packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"

1130
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,11 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [ "extends": [
"local>spenke-nordic-ab/renovate-config" "config:base"
],
"packageRules": [
{
"updateTypes": ["minor", "patch", "pin", "digest"],
"automerge": true
}
] ]
} }