Skip to content

Commit 7186954

Browse files
committed
📦 Update dependencies
1 parent 62cf40b commit 7186954

4 files changed

Lines changed: 37 additions & 50 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%",

‎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)