Skip to content

Commit

Permalink
Update to 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
staniel359 committed Apr 6, 2023
1 parent b615ac9 commit ee13cc4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
node-version: '19.x'

- name: Set up dependencies
run: yarn --ignore-scripts
Expand All @@ -50,6 +50,9 @@ jobs:
echo VITE_APP_DISCORD_CLIENT_ID=${{ secrets.DISCORD_CLIENT_ID }} >> .env
cat .env
- name: Prebuild Electron
run: node ${{ github.workspace }}/node_modules/vite-plugin-electron-renderer/install.js

- name: Release
env:
ELECTRON_CACHE: ${{ github.workspace }}/.cache/electron
Expand Down
2 changes: 1 addition & 1 deletion electron/formatters.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ import dayjs from 'dayjs'

export function currentTime () {
return dayjs.utc().format()
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "muffon",
"version": "1.4.0",
"version": "1.5.0",
"description": "Music streaming browser",
"homepage": "https://github.com/staniel359/muffon",
"bugs": {
Expand Down
6 changes: 4 additions & 2 deletions vite.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import {
defineConfig
defineConfig,
splitVendorChunkPlugin
} from 'vite'
import vue from '@vitejs/plugin-vue'
import inject from '@rollup/plugin-inject'
Expand Down Expand Up @@ -58,7 +59,8 @@ export default defineConfig(
)
}
}
)
),
splitVendorChunkPlugin()
],
resolve: {
alias: {
Expand Down

0 comments on commit ee13cc4

Please sign in to comment.