Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
larsrickert committed Nov 29, 2023
1 parent f52a3ec commit c8e2ca0
Show file tree
Hide file tree
Showing 8 changed files with 1,081 additions and 961 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: actions/setup-node@v3
with:
node-version-file: .node-version
cache: "pnpm"
cache: pnpm
- name: 📦 Install dependencies
run: pnpm install
- name: 🔎 Lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
uses: actions/setup-node@v3
with:
node-version-file: .node-version
cache: "pnpm"
cache: pnpm
- name: 📦 Install dependencies
run: pnpm install
- name: Release
Expand Down
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18
20
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# build stage
FROM node:18-alpine as build
FROM node:20-alpine as build
WORKDIR /app

COPY pnpm-lock.yaml package.json ./
Expand Down
46 changes: 23 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "template-vue",
"version": "1.1.0",
"private": true,
"packageManager": "pnpm@8.8.0",
"packageManager": "pnpm@8.11.0",
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
Expand All @@ -15,40 +15,40 @@
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"@fontsource/open-sans": "^5.0.14",
"pinia": "^2.1.6",
"vue": "^3.3.4",
"vue-i18n": "^9.5.0",
"@fontsource/open-sans": "^5.0.17",
"pinia": "^2.1.7",
"vue": "^3.3.9",
"vue-i18n": "^9.8.0",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@intlify/unplugin-vue-i18n": "^1.4.0",
"@rushstack/eslint-patch": "^1.5.1",
"@intlify/unplugin-vue-i18n": "^1.5.0",
"@rushstack/eslint-patch": "^1.6.0",
"@semantic-release/git": "^10.0.1",
"@tsconfig/node18": "^18.2.2",
"@types/jsdom": "^21.1.3",
"@types/node": "^18.18.3",
"@vitejs/plugin-vue": "^4.4.0",
"@tsconfig/node20": "^20.1.2",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.10.1",
"@vitejs/plugin-vue": "^4.5.0",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.1",
"@vue/test-utils": "^2.4.3",
"@vue/tsconfig": "~0.4.0",
"eslint": "^8.50.0",
"eslint-plugin-vue": "^9.17.0",
"jsdom": "^22.1.0",
"lint-staged": "^14.0.1",
"eslint": "^8.54.0",
"eslint-plugin-vue": "^9.18.1",
"jsdom": "^23.0.0",
"lint-staged": "^15.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"sass": "^1.68.0",
"semantic-release": "^22.0.5",
"prettier": "^3.1.0",
"sass": "^1.69.5",
"semantic-release": "^22.0.8",
"simple-git-hooks": "^2.9.0",
"typescript": "~5.2.2",
"vite": "^4.4.9",
"typescript": "~5.3.2",
"vite": "^5.0.4",
"vitest": "~0.34.6",
"vue-tsc": "^1.8.15"
"vue-tsc": "^1.8.24"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{vue,js,ts}": "eslint --fix --ignore-path .gitignore"
Expand Down
Loading

0 comments on commit c8e2ca0

Please sign in to comment.