Skip to content

Commit bdc9f42

Browse files
committed
fix: change deprecated option rollupOptions to rolldownOptions
1 parent 0b3c6f9 commit bdc9f42

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

electron.vite.config.mts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export default defineConfig({
4545
formats: ['es'],
4646
},
4747
outDir: 'dist/main',
48-
rollupOptions: {
48+
rolldownOptions: {
4949
external: ['electron', 'custom-electron-prompt', ...builtinModules],
5050
input: './src/index.ts',
5151
},
@@ -96,7 +96,7 @@ export default defineConfig({
9696
commonjsOptions: {
9797
ignoreDynamicRequires: true,
9898
},
99-
rollupOptions: {
99+
rolldownOptions: {
100100
external: ['electron', 'custom-electron-prompt', ...builtinModules],
101101
input: './src/preload.ts',
102102
},
@@ -149,7 +149,7 @@ export default defineConfig({
149149
name: 'renderer',
150150
},
151151
outDir: 'dist/renderer',
152-
rollupOptions: {
152+
rolldownOptions: {
153153
external: ['electron', ...builtinModules],
154154
input: './src/index.html',
155155
},

src/plugins/transparent-player/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const typeList = Object.values(MaterialType);
2020
export default createPlugin({
2121
name: () => t('plugins.transparent-player.name'),
2222
description: () => t('plugins.transparent-player.description'),
23-
addedVersion: '3.10.x',
23+
addedVersion: '3.11.x',
2424
restartNeeded: true,
2525
platform: Platform.Windows,
2626
config: defaultConfig,

0 commit comments

Comments
 (0)