diff --git a/package.json b/package.json index 96e3cd53..cc455a85 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ }, "homepage": "https://github.com/electron-userland/electron-packager", "dependencies": { - "@electron/get": "^1.2.0", + "@electron/get": "^1.3.0", "asar": "^2.0.1", "cross-zip": "^2.1.5", "debug": "^4.0.1", diff --git a/src/targets.js b/src/targets.js index 6337c61d..e71de08a 100644 --- a/src/targets.js +++ b/src/targets.js @@ -15,7 +15,6 @@ const officialPlatformArchCombos = { const linuxArchBuildVersions = { arm64: '>= 1.8.0', - ia32: '< 4.0.0-beta.1', mips64el: '^1.8.2-beta.5' } diff --git a/test/targets.js b/test/targets.js index 0a948c04..60525ba8 100644 --- a/test/targets.js +++ b/test/targets.js @@ -53,13 +53,6 @@ test('allOfficialArchsForPlatformAndVersion returns mips64el when the correct ve 'should not be found when version is < 1.8.2-beta.5') }) -test('allOfficialArchsForPlatformAndVersion returns ia32 when the correct version is specified', t => { - t.true(targets.allOfficialArchsForPlatformAndVersion('linux', '2.0.0').includes('ia32'), - 'should be found when version is < 4.0.0') - t.false(targets.allOfficialArchsForPlatformAndVersion('linux', '4.0.0').includes('ia32'), - 'should not be found when version is >= 4.0.0-beta.1') -}) - test('validateListFromOptions does not take non-Array/String values', t => { targets.supported.digits = new Set(['64', '65']) t.false(targets.validateListFromOptions({ digits: 64 }, 'digits') instanceof Array,