🐥

【Electron】yarn electron:build がエラーになったときの対処法

2021/05/20に公開

$ yarn electron:buildでパッケージングしようとすると、

Error: editions-autoloader-invalid-engines: 
The edition had no engines to compare against the environment

というエラーが発生しました。

環境

Node.js: v16.2.0
Electron: 12.0.0
electron-builder: 22.10.5

原因と対処

Node のバージョンがv16.2.0だったことが原因でした。

対処法

nodebrew でv15.14.0にバージョンを切り替えると解決しました。

$ nodebrew install v15.14.0
$ nodebrew use v15.14.0

参考

Unable to build on windows with 22.10.5

Discussion