Skip to content

Commit 4ba5b57

Browse files
authored
Merge pull request #48 from devmount/chores/vite-update
Vite update
2 parents ce88a1a + 7186954 commit 4ba5b57

5 files changed

Lines changed: 39 additions & 52 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
push:
99
tags:
1010
- '*'
11+
workflow_dispatch:
1112

1213
jobs:
1314
build:
@@ -23,7 +24,7 @@ jobs:
2324
npm install
2425
npm run build
2526
- name: Push Build files to production environment
26-
uses: burnett01/rsync-deployments@7.0.1
27+
uses: burnett01/rsync-deployments@7.0.2
2728
with:
2829
switches: -avzr --delete
2930
path: dist/

package-lock.json

Lines changed: 32 additions & 44 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,11 @@
1414
"vue-router": "^4.1.6"
1515
},
1616
"devDependencies": {
17-
"@vitejs/plugin-vue": "^5.0.3",
17+
"@vitejs/plugin-vue": "^6.0.1",
1818
"oxlint": "^1.9.0",
1919
"stylus": "^0.64.0",
2020
"stylus-loader": "^8.0.0",
21-
"vite": "^6.3.5",
22-
"vite-plugin-oxlint": "^1.4.0"
21+
"vite": "^7.0.6"
2322
},
2423
"browserslist": [
2524
"> 1%",

src/views/Stats.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
</div>
3333
<div class="card">
3434
<h2>{{ avgSeriesLength }}h</h2>
35-
<pTitellänge</p>
35+
<pTitelspielzeit</p>
3636
</div>
3737
<div class="card">
3838
<h2>{{ maxSeriesLength }}h</h2>
@@ -44,7 +44,7 @@
4444
</div>
4545
<div class="card">
4646
<h2>{{ avgEpisodeLength }}</h2>
47-
<pEpisodenlänge</p>
47+
<pEpisodenspielzeit</p>
4848
</div>
4949
<div class="card">
5050
<h2>{{ maxEpisodeLength }}</h2>

vite.config.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
import { defineConfig } from 'vite';
22
import { resolve } from 'path';
33
import vue from '@vitejs/plugin-vue';
4-
import oxlintPlugin from 'vite-plugin-oxlint'
54

65
export default defineConfig({
7-
plugins: [vue(), oxlintPlugin()],
6+
plugins: [vue()],
87
define: {
98
APP_VERSION: JSON.stringify(process.env.npm_package_version),
109
},

0 commit comments

Comments
 (0)