You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 15, 2022. It is now read-only.
@paulcbetts Could you please publish releases for these soon? (My app is impacted by the race condition in 2.0.0-beta.1.) I feel bad pestering people to work for me for free, especially other FOSS folks. If I can help, e.g. with #55, please let me know. I'm also sending a small 💵 thank you via PayPal (using your GH email) 😉.
In case it's helpful, here's a script that lists missing versions:
// npm install npm-registry-package-infoconstpkginfo=require('npm-registry-package-info');pkginfo({packages: ['electron','electron-prebuilt-compile']},(error,data)=>{if(error){throwerror;}const{ meta,data: results, failures }=data;console.log(meta,failures);consteVersions=Object.keys(results.electron.versions);constepcVersions=Object.keys(results['electron-prebuilt-compile'].versions);if(eVersionsinstanceofArray&&epcVersionsinstanceofArray){missingVersions=eVersions.map(ev=>epcVersions.find(epcv=>epcv===ev) ? null : ev).filter(Boolean);console.log('Could not find electron-prebuilt-compile match for the following electron versions:',missingVersions);}else{console.error('Could not fetch versions',eVersions,epcVersions);}});
Output:
Could not find electron-prebuilt-compile match for the following electron versions: [ '0.1.0',
'0.1.1',
'0.1.2',
'0.2.0',
'0.2.1',
'0.3.0',
'0.4.0',
'0.4.1',
'1.3.3',
'1.3.4',
'1.4.8',
'1.5.0',
'1.3.14',
'1.4.16',
'1.3.15',
'1.7.10',
'1.7.12',
'1.6.17',
'2.0.0-beta.2',
'1.8.3',
'2.0.0-beta.3' ]
The text was updated successfully, but these errors were encountered:
The following current electron versions do not currently have corresponding
electron-prebuilt-compile
versions:1.8.3
2.0.0-beta.2
2.0.0-beta.3
@paulcbetts Could you please publish releases for these soon? (My app is impacted by the race condition in
2.0.0-beta.1
.) I feel bad pestering people to work for me for free, especially other FOSS folks. If I can help, e.g. with #55, please let me know. I'm also sending a small 💵 thank you via PayPal (using your GH email) 😉.In case it's helpful, here's a script that lists missing versions:
Output:
The text was updated successfully, but these errors were encountered: