chore: ignore electron-notarize for updates for the time being

This commit is contained in:
Mark Lee 2021-08-11 12:04:53 -07:00
Родитель 7e04c00e52
Коммит 677cf9d1b0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 82F864B9B8626D7C
2 изменённых файлов: 2 добавлений и 0 удалений

1
.github/dependabot.yml поставляемый
Просмотреть файл

@ -9,6 +9,7 @@ updates:
# aws-sdk upgrades too often, do this manually
- dependency-name: aws-sdk
- dependency-name: commander
- dependency-name: electron-notarize
- dependency-name: log-symbols
- dependency-name: typescript
versions: ['4.1.x', '4.2.x', '4.3.x']

Просмотреть файл

@ -7,6 +7,7 @@ const { spawn } = require('@malept/cross-spawn-promise')
const DO_NOT_UPGRADE = [
'@typescript-eslint/eslint-plugin', // special case
'commander', // TODO: convert to yargs
'electron-notarize', // There's a bug in the TypeScript definition which affects Packager
'log-symbols', // Requires ESM
'typescript' // Promisify issues, see https://github.com/DefinitelyTyped/DefinitelyTyped/pull/49699
]