From 011d8210851c16e2e39e9d9a114ccbff201dc58d 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 | 1 + electron-builder.json5 | 1 + src/components.d.ts | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/auto-imports.d.ts b/auto-imports.d.ts index fb10b91f0..b0b03575b 100644 --- a/auto-imports.d.ts +++ b/auto-imports.d.ts @@ -3,5 +3,6 @@ // @ts-nocheck // noinspection JSUnusedGlobalSymbols // Generated by unplugin-auto-import +// biome-ignore lint: disable export {} 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']