Fix typo in yarn versions
Fix engines for publisher-gcs
This commit is contained in:
Erick Zhao 2023-11-17 10:30:27 -08:00
Родитель 006ac226ad
Коммит 802a86e43b
Не найден ключ, соответствующий данной подписи
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -33,7 +33,7 @@ const NPM_ALLOWLISTED_VERSIONS = {
linux: '>= 5.4.0',
};
const YARN_ALLOWLISTED_VERSIONS = {
all: '>1.0.0',
all: '>= 1.0.0',
};
export function checkValidPackageManagerVersion(packageManager: string, version: string, allowlistedVersions: string) {

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

@ -12,7 +12,7 @@
"mocha": "^9.0.1"
},
"engines": {
"node": ">= 14.17.5"
"node": ">= 16.4.0"
},
"dependencies": {
"@electron-forge/publisher-base": "7.0.0",