From a504d0d4de994adcaad9435be99fa4dae5212fed Mon Sep 17 00:00:00 2001 From: gabaldon Date: Mon, 14 Oct 2024 18:32:58 +0200 Subject: [PATCH] fix: skip signing in windows --- auto-imports.d.ts | 5 ++++- electron-builder.json5 | 1 + src/components.d.ts | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/auto-imports.d.ts b/auto-imports.d.ts index fb10b91f0..9d2400790 100644 --- a/auto-imports.d.ts +++ b/auto-imports.d.ts @@ -3,5 +3,8 @@ // @ts-nocheck // noinspection JSUnusedGlobalSymbols // Generated by unplugin-auto-import +// biome-ignore lint: disable export {} -declare global {} +declare global { + +} diff --git a/electron-builder.json5 b/electron-builder.json5 index 699eac887..8dae51b2e 100644 --- a/electron-builder.json5 +++ b/electron-builder.json5 @@ -22,6 +22,7 @@ }, "afterSign": "scripts/notarize.cjs", "win": { + "verifyUpdateCodeSignature": false, "target": [ { "target": "nsis", diff --git a/src/components.d.ts b/src/components.d.ts index 121c19ca4..5d192ebdc 100644 --- a/src/components.d.ts +++ b/src/components.d.ts @@ -1,10 +1,10 @@ /* eslint-disable */ -/* prettier-ignore */ // @ts-nocheck // Generated by unplugin-vue-components // Read more: https://github.com/vuejs/core/pull/3399 export {} +/* prettier-ignore */ declare module 'vue' { export interface GlobalComponents { Add: typeof import('./components/svg/Add.vue')['default']