Skip to content

Commit ee13cc4

Browse files
committed
Update to 1.5.0
1 parent b615ac9 commit ee13cc4

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

.github/workflows/main.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Set up Node.js
3434
uses: actions/setup-node@v3
3535
with:
36-
node-version: '18.x'
36+
node-version: '19.x'
3737

3838
- name: Set up dependencies
3939
run: yarn --ignore-scripts
@@ -50,6 +50,9 @@ jobs:
5050
echo VITE_APP_DISCORD_CLIENT_ID=${{ secrets.DISCORD_CLIENT_ID }} >> .env
5151
cat .env
5252
53+
- name: Prebuild Electron
54+
run: node ${{ github.workspace }}/node_modules/vite-plugin-electron-renderer/install.js
55+
5356
- name: Release
5457
env:
5558
ELECTRON_CACHE: ${{ github.workspace }}/.cache/electron

electron/formatters.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ import dayjs from 'dayjs'
22

33
export function currentTime () {
44
return dayjs.utc().format()
5-
}
5+
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "muffon",
3-
"version": "1.4.0",
3+
"version": "1.5.0",
44
"description": "Music streaming browser",
55
"homepage": "https://github.com/staniel359/muffon",
66
"bugs": {

vite.config.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import {
2-
defineConfig
2+
defineConfig,
3+
splitVendorChunkPlugin
34
} from 'vite'
45
import vue from '@vitejs/plugin-vue'
56
import inject from '@rollup/plugin-inject'
@@ -58,7 +59,8 @@ export default defineConfig(
5859
)
5960
}
6061
}
61-
)
62+
),
63+
splitVendorChunkPlugin()
6264
],
6365
resolve: {
6466
alias: {

0 commit comments

Comments
 (0)