feat: add bundled Windows native runtime

This commit is contained in:
reaper
2026-08-26 20:54:58 -05:00
parent bc92db6252
commit c9f832d250
12 changed files with 201 additions and 50 deletions
+9 -1
View File
@@ -6,7 +6,7 @@ on:
release_tag: release_tag:
description: Existing GitHub release tag to receive the Windows installer description: Existing GitHub release tag to receive the Windows installer
required: true required: true
default: v2.0.0-alpha.28 default: v2.0.0-alpha.29
push: push:
tags: tags:
- 'v*' - 'v*'
@@ -37,6 +37,13 @@ jobs:
npm run typecheck npm run typecheck
npm run test:run npm run test:run
- name: Build and verify Aurora Native for Windows
shell: pwsh
run: |
./runtime-build/windows-x64/stage-runtime.ps1
node scripts/smoke-native-runtime.cjs dist/native-runtime-stage/win32-x64
node scripts/package-native-runtime.cjs dist/native-runtime-stage/win32-x64 dist/native-runtime/aurora-native-0.1.0-win32-x64.tar.gz
- name: Read application version - name: Read application version
shell: pwsh shell: pwsh
run: | run: |
@@ -68,6 +75,7 @@ jobs:
dist/latest.yml dist/latest.yml
dist/SHA256SUMS-windows.txt dist/SHA256SUMS-windows.txt
dist/module-catalog/*.pac dist/module-catalog/*.pac
dist/native-runtime/aurora-native-0.1.0-win32-x64.tar.gz
- name: Publish Windows assets - name: Publish Windows assets
if: startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch' if: startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch'
+2 -2
View File
@@ -1,12 +1,12 @@
{ {
"name": "aurora-dockside", "name": "aurora-dockside",
"version": "2.0.0-alpha.28", "version": "2.0.0-alpha.29",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "aurora-dockside", "name": "aurora-dockside",
"version": "2.0.0-alpha.28", "version": "2.0.0-alpha.29",
"hasInstallScript": true, "hasInstallScript": true,
"dependencies": { "dependencies": {
"@electron-toolkit/preload": "^3.0.2", "@electron-toolkit/preload": "^3.0.2",
+2 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "aurora-dockside", "name": "aurora-dockside",
"version": "2.0.0-alpha.28", "version": "2.0.0-alpha.29",
"description": "A modern, modular Docker development platform for building, running, and managing web applications locally.", "description": "A modern, modular Docker development platform for building, running, and managing web applications locally.",
"desktopName": "aurora-dockside.desktop", "desktopName": "aurora-dockside.desktop",
"main": "./out/main/index.js", "main": "./out/main/index.js",
@@ -23,6 +23,7 @@
"build:connector": "node scripts/package-connector.cjs", "build:connector": "node scripts/package-connector.cjs",
"build:native-runtime": "node scripts/package-native-runtime.cjs", "build:native-runtime": "node scripts/package-native-runtime.cjs",
"build:native-linux-x64": "node scripts/build-native-linux-x64.cjs", "build:native-linux-x64": "node scripts/build-native-linux-x64.cjs",
"build:native-windows-x64": "powershell -ExecutionPolicy Bypass -File runtime-build/windows-x64/stage-runtime.ps1",
"check:php-releases": "node scripts/check-php-releases.mjs", "check:php-releases": "node scripts/check-php-releases.mjs",
"module:new": "node scripts/create-module.cjs", "module:new": "node scripts/create-module.cjs",
"postinstall": "electron-builder install-app-deps", "postinstall": "electron-builder install-app-deps",
@@ -38,11 +38,12 @@ exports.projectCreate = async function projectCreate(context) {
const s = context.settings const s = context.settings
const title = String(s.title || '').trim() || context.projectName const title = String(s.title || '').trim() || context.projectName
const native = context.environment.runtimeEngine === 'native' const native = context.environment.runtimeEngine === 'native'
const base = native ? [`--path=${context.directory}`] : wpArgs(context, false) const nativePrefix = native ? context.native.wpPrefixArgs || [] : []
const base = native ? [...nativePrefix, `--path=${context.directory}`] : wpArgs(context, false)
const networkBase = native ? base : wpArgs(context, true) const networkBase = native ? base : wpArgs(context, true)
const command = native ? context.native.wp : 'docker' const command = native ? context.native.wp : 'docker'
const siteUrl = native ? context.urls.http : context.urls.https const siteUrl = native ? context.urls.http : context.urls.https
const wp = (label, args) => context.run(label, command, [...(native ? [] : networkBase), ...args]) const wp = (label, args) => context.run(label, command, [...networkBase, ...args])
if (native) { if (native) {
await context.native.start() await context.native.start()
const port = Number(context.native.databasePort) const port = Number(context.native.databasePort)
@@ -0,0 +1,61 @@
param(
[string]$Stage = "dist/native-runtime-stage/win32-x64",
[string]$PhpVersion = "8.5.9",
[string]$NginxVersion = "1.30.4",
[string]$MariaDbVersion = "11.8.8",
[string]$WpCliVersion = "2.12.0",
[string]$AdminerVersion = "6.0.1",
[string]$RuntimeVersion = "0.1.0"
)
$ErrorActionPreference = "Stop"
$stagePath = [IO.Path]::GetFullPath($Stage)
$downloads = Join-Path ([IO.Path]::GetTempPath()) "aurora-native-downloads"
Remove-Item $stagePath -Recurse -Force -ErrorAction SilentlyContinue
New-Item $stagePath -ItemType Directory -Force | Out-Null
New-Item $downloads -ItemType Directory -Force | Out-Null
function Fetch([string]$Url, [string]$Destination) {
Write-Host "Downloading $Url"
Invoke-WebRequest -Uri $Url -OutFile $Destination
}
$phpZip = Join-Path $downloads "php.zip"
$nginxZip = Join-Path $downloads "nginx.zip"
$mariaZip = Join-Path $downloads "mariadb.zip"
Fetch "https://windows.php.net/downloads/releases/archives/php-$PhpVersion-nts-Win32-vs17-x64.zip" $phpZip
Fetch "https://nginx.org/download/nginx-$NginxVersion.zip" $nginxZip
Fetch "https://archive.mariadb.org/mariadb-$MariaDbVersion/winx64-packages/mariadb-$MariaDbVersion-winx64.zip" $mariaZip
$phpRoot = Join-Path $stagePath "bin/php"
$nginxParent = Join-Path $stagePath "bin/nginx-unpack"
$mariaParent = Join-Path $stagePath "bin/mariadb-unpack"
Expand-Archive $phpZip $phpRoot -Force
Expand-Archive $nginxZip $nginxParent -Force
Expand-Archive $mariaZip $mariaParent -Force
Move-Item (Join-Path $nginxParent "nginx-$NginxVersion") (Join-Path $stagePath "bin/nginx")
Move-Item (Join-Path $mariaParent "mariadb-$MariaDbVersion-winx64") (Join-Path $stagePath "bin/mariadb")
Remove-Item $nginxParent, $mariaParent -Recurse -Force
$tools = Join-Path $stagePath "tools"
New-Item $tools -ItemType Directory -Force | Out-Null
Fetch "https://github.com/wp-cli/wp-cli/releases/download/v$WpCliVersion/wp-cli-$WpCliVersion.phar" (Join-Path $tools "wp-cli.phar")
Fetch "https://github.com/vrana/adminer/releases/download/v$AdminerVersion/adminer-$AdminerVersion.php" (Join-Path $tools "adminer.php")
$template = @{
schema = 1
runtimeVersion = $RuntimeVersion
platform = "win32"
arch = "x64"
components = @(
@{ id = "php"; version = $PhpVersion; executable = "bin/php/php-cgi.exe" }
@{ id = "nginx"; version = $NginxVersion; executable = "bin/nginx/nginx.exe" }
@{ id = "mariadb"; version = $MariaDbVersion; executable = "bin/mariadb/bin/mariadbd.exe" }
@{ id = "mariadb-client"; version = $MariaDbVersion; executable = "bin/mariadb/bin/mariadb.exe" }
@{ id = "mariadb-dump"; version = $MariaDbVersion; executable = "bin/mariadb/bin/mariadb-dump.exe" }
@{ id = "adminer"; version = $AdminerVersion; executable = "tools/adminer.php" }
@{ id = "wp-cli"; version = $WpCliVersion; executable = "tools/wp-cli.phar" }
)
}
$template | ConvertTo-Json -Depth 5 | Set-Content (Join-Path $stagePath "runtime.template.json")
Write-Host $stagePath
+21 -17
View File
@@ -10,40 +10,37 @@ const root = resolve(process.argv[2] || '')
if (!root || !existsSync(join(root, 'runtime.template.json'))) if (!root || !existsSync(join(root, 'runtime.template.json')))
throw new Error('Usage: node scripts/smoke-native-runtime.cjs <staging-directory>') throw new Error('Usage: node scripts/smoke-native-runtime.cjs <staging-directory>')
const template = JSON.parse(readFileSync(join(root, 'runtime.template.json'), 'utf8')) const template = JSON.parse(readFileSync(join(root, 'runtime.template.json'), 'utf8'))
const windows = template.platform === 'win32'
const php = windows ? join(root, 'bin/php/php.exe') : join(root, 'bin/php')
const checks = [ const checks = [
[ ['PHP', php, ['--version'], template.components.find((item) => item.id === 'php')?.version],
'PHP',
join(root, 'bin/php'),
['--version'],
template.components.find((item) => item.id === 'php')?.version
],
[ [
'nginx', 'nginx',
join(root, 'bin/nginx'), windows ? join(root, 'bin/nginx/nginx.exe') : join(root, 'bin/nginx'),
['-v'], ['-v'],
template.components.find((item) => item.id === 'nginx')?.version template.components.find((item) => item.id === 'nginx')?.version
], ],
[ [
'MariaDB', 'MariaDB',
join(root, 'bin/mariadbd'), windows ? join(root, 'bin/mariadb/bin/mariadbd.exe') : join(root, 'bin/mariadbd'),
['--version'], ['--version'],
template.components.find((item) => item.id === 'mariadb')?.version template.components.find((item) => item.id === 'mariadb')?.version
], ],
[ [
'WP-CLI', 'WP-CLI',
join(root, 'bin/wp'), windows ? php : join(root, 'bin/wp'),
['--version'], windows ? [join(root, 'tools/wp-cli.phar'), '--version'] : ['--version'],
template.components.find((item) => item.id === 'wp-cli')?.version template.components.find((item) => item.id === 'wp-cli')?.version
], ],
[ [
'MariaDB client', 'MariaDB client',
join(root, 'bin/mariadb'), windows ? join(root, 'bin/mariadb/bin/mariadb.exe') : join(root, 'bin/mariadb'),
['--version'], ['--version'],
template.components.find((item) => item.id === 'mariadb')?.version template.components.find((item) => item.id === 'mariadb')?.version
], ],
[ [
'MariaDB dump', 'MariaDB dump',
join(root, 'bin/mariadb-dump'), windows ? join(root, 'bin/mariadb/bin/mariadb-dump.exe') : join(root, 'bin/mariadb-dump'),
['--version'], ['--version'],
template.components.find((item) => item.id === 'mariadb')?.version template.components.find((item) => item.id === 'mariadb')?.version
] ]
@@ -59,7 +56,7 @@ for (const [name, command, args, version] of checks) {
} }
const extensions = spawnSync( const extensions = spawnSync(
join(root, 'bin/php'), php,
['-r', "exit(extension_loaded('mysqli') && extension_loaded('pdo_mysql') ? 0 : 1);"], ['-r', "exit(extension_loaded('mysqli') && extension_loaded('pdo_mysql') ? 0 : 1);"],
{ encoding: 'utf8' } { encoding: 'utf8' }
) )
@@ -68,8 +65,11 @@ if (extensions.error || extensions.status !== 0)
process.stdout.write('PHP mysqli and pdo_mysql extensions OK\n') process.stdout.write('PHP mysqli and pdo_mysql extensions OK\n')
const adminer = spawnSync( const adminer = spawnSync(
join(root, 'bin/php'), php,
['-l', join(root, 'root/usr/share/aurora/adminer.php')], [
'-l',
windows ? join(root, 'tools/adminer.php') : join(root, 'root/usr/share/aurora/adminer.php')
],
{ encoding: 'utf8' } { encoding: 'utf8' }
) )
if (adminer.error || adminer.status !== 0) if (adminer.error || adminer.status !== 0)
@@ -80,8 +80,12 @@ const databaseDirectory = mkdtempSync(join(tmpdir(), 'aurora-native-mariadb-'))
const temporaryDirectory = mkdtempSync(join(tmpdir(), 'aurora-native-mariadb-tmp-')) const temporaryDirectory = mkdtempSync(join(tmpdir(), 'aurora-native-mariadb-tmp-'))
try { try {
const result = spawnSync( const result = spawnSync(
join(root, 'bin/mariadb-install-db'), windows
[ ? join(root, 'bin/mariadb/bin/mariadb-install-db.exe')
: join(root, 'bin/mariadb-install-db'),
windows
? [`--datadir=${databaseDirectory}`, '--password=']
: [
'--no-defaults', '--no-defaults',
`--datadir=${databaseDirectory}`, `--datadir=${databaseDirectory}`,
`--tmpdir=${temporaryDirectory}`, `--tmpdir=${temporaryDirectory}`,
+3 -1
View File
@@ -14,6 +14,7 @@ import { registerRemoteIpc } from './ipc/remote'
import { registerRuntimeIpc } from './ipc/runtime' import { registerRuntimeIpc } from './ipc/runtime'
import { killAllRunningCommands, powerOffAllProjects } from './commandRunner' import { killAllRunningCommands, powerOffAllProjects } from './commandRunner'
import { startAutomaticUpdates } from './updater' import { startAutomaticUpdates } from './updater'
import { ensureBundledNativeRuntime } from './nativeRuntime'
function createWindow(): void { function createWindow(): void {
// Create the browser window. // Create the browser window.
@@ -51,7 +52,7 @@ function createWindow(): void {
// This method will be called when Electron has finished // This method will be called when Electron has finished
// initialization and is ready to create browser windows. // initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs. // Some APIs can only be used after this event occurs.
app.whenReady().then(() => { app.whenReady().then(async () => {
// Set app user model id for windows // Set app user model id for windows
electronApp.setAppUserModelId('com.aurora-dockside.app') electronApp.setAppUserModelId('com.aurora-dockside.app')
@@ -73,6 +74,7 @@ app.whenReady().then(() => {
registerRemoteIpc() registerRemoteIpc()
registerRuntimeIpc() registerRuntimeIpc()
await ensureBundledNativeRuntime()
createWindow() createWindow()
startAutomaticUpdates() startAutomaticUpdates()
+10 -1
View File
@@ -61,7 +61,16 @@ async function runDatabasePipe(
docroot: config.docroot, docroot: config.docroot,
ports: config.nativePorts ports: config.nativePorts
}) })
command = join(runtimeRoot(), 'bin', mode === 'dump' ? 'mariadb-dump' : 'mariadb') command =
process.platform === 'win32'
? join(
runtimeRoot(),
'bin',
'mariadb',
'bin',
mode === 'dump' ? 'mariadb-dump.exe' : 'mariadb.exe'
)
: join(runtimeRoot(), 'bin', mode === 'dump' ? 'mariadb-dump' : 'mariadb')
args = [ args = [
'--host=127.0.0.1', '--host=127.0.0.1',
`--port=${config.nativePorts.database}`, `--port=${config.nativePorts.database}`,
+1
View File
@@ -118,6 +118,7 @@ export function registerProjectsIpc(): void {
const php = nativeServiceSpecs(native) const php = nativeServiceSpecs(native)
.find((spec) => spec.id.endsWith(':php')) .find((spec) => spec.id.endsWith(':php'))
?.command.replace(/php-fpm$/, 'php') ?.command.replace(/php-fpm$/, 'php')
.replace(/php-cgi\.exe$/i, 'php.exe')
if (!php) throw new Error('Native PHP executable not found.') if (!php) throw new Error('Native PHP executable not found.')
return runCommandStreamed(id, php, ['-i'], e.sender, { cwd: native.root }) return runCommandStreamed(id, php, ['-i'], e.sender, { cwd: native.root })
} }
+12 -2
View File
@@ -109,8 +109,18 @@ export async function runModuleLifecycleHook(
urls: urls ? Object.freeze(urls) : undefined, urls: urls ? Object.freeze(urls) : undefined,
native: nativeDefinition native: nativeDefinition
? Object.freeze({ ? Object.freeze({
php: join(runtimeRoot(), 'bin', 'php'), php:
wp: join(runtimeRoot(), 'bin', 'wp'), process.platform === 'win32'
? join(runtimeRoot(), 'bin', 'php', 'php.exe')
: join(runtimeRoot(), 'bin', 'php'),
wp:
process.platform === 'win32'
? join(runtimeRoot(), 'bin', 'php', 'php.exe')
: join(runtimeRoot(), 'bin', 'wp'),
wpPrefixArgs:
process.platform === 'win32'
? ['-d', 'memory_limit=512M', join(runtimeRoot(), 'tools', 'wp-cli.phar')]
: [],
databaseHost: '127.0.0.1', databaseHost: '127.0.0.1',
databasePort: nativeDefinition.ports.database, databasePort: nativeDefinition.ports.database,
start: () => startNativeProject(nativeDefinition) start: () => startNativeProject(nativeDefinition)
+47 -9
View File
@@ -21,6 +21,14 @@ function installedRoot(project: NativeProjectDefinition): string {
return project.installedRuntimeRoot ?? runtimeRoot() return project.installedRuntimeRoot ?? runtimeRoot()
} }
function runtimeExecutable(project: NativeProjectDefinition, name: string): string {
if (process.platform !== 'win32') return join(installedRoot(project), 'bin', name)
if (name === 'php' || name === 'php-cgi')
return join(installedRoot(project), 'bin', 'php', `${name}.exe`)
if (name === 'nginx') return join(installedRoot(project), 'bin', 'nginx', 'nginx.exe')
return join(installedRoot(project), 'bin', 'mariadb', 'bin', `${name}.exe`)
}
function nativeDirectory(root: string): string { function nativeDirectory(root: string): string {
return join(root, '.aurora', 'native') return join(root, '.aurora', 'native')
} }
@@ -109,7 +117,10 @@ http {
} }
export function renderNativeAdminerBootstrap(project: NativeProjectDefinition): string { export function renderNativeAdminerBootstrap(project: NativeProjectDefinition): string {
const adminer = join(installedRoot(project), 'root', 'usr', 'share', 'aurora', 'adminer.php') const adminer =
process.platform === 'win32'
? join(installedRoot(project), 'tools', 'adminer.php')
: join(installedRoot(project), 'root', 'usr', 'share', 'aurora', 'adminer.php')
return `<?php return `<?php
// Generated by Aurora Core. This endpoint binds only to the project's loopback server. // Generated by Aurora Core. This endpoint binds only to the project's loopback server.
?> ?>
@@ -137,8 +148,12 @@ export function renderMariaDbConfig(
installedRuntimeRoot = runtimeRoot() installedRuntimeRoot = runtimeRoot()
): string { ): string {
const directory = nativeDirectory(project.root) const directory = nativeDirectory(project.root)
const basedir =
process.platform === 'win32'
? join(installedRuntimeRoot, 'bin', 'mariadb')
: join(installedRuntimeRoot, 'root', 'usr')
return `[mariadbd] return `[mariadbd]
basedir=${join(installedRuntimeRoot, 'root', 'usr')} basedir=${basedir}
datadir=${join(directory, 'data', 'mariadb')} datadir=${join(directory, 'data', 'mariadb')}
tmpdir=${join(directory, 'tmp')} tmpdir=${join(directory, 'tmp')}
bind-address=127.0.0.1 bind-address=127.0.0.1
@@ -172,14 +187,24 @@ export async function provisionNativeProject(project: NativeProjectDefinition):
writeFile( writeFile(
join(directory, 'config', 'mariadb.cnf'), join(directory, 'config', 'mariadb.cnf'),
renderMariaDbConfig(project, installedRoot(project)) renderMariaDbConfig(project, installedRoot(project))
),
...(process.platform === 'win32'
? [
writeFile(
join(directory, 'config', 'php.ini'),
`extension_dir="${join(installedRoot(project), 'bin', 'php', 'ext')}"\nextension=mysqli\nextension=pdo_mysql\nextension=mbstring\nextension=curl\nextension=openssl\nextension=zip\ndisplay_errors=On\nlog_errors=On\nerror_log="${join(directory, 'logs', 'php.log')}"\n`
) )
]
: [])
]) ])
try { try {
await access(join(directory, 'data', 'mariadb', 'mysql')) await access(join(directory, 'data', 'mariadb', 'mysql'))
} catch { } catch {
await execFileAsync( await execFileAsync(
join(installedRoot(project), 'bin', 'mariadb-install-db'), runtimeExecutable(project, 'mariadb-install-db'),
[ process.platform === 'win32'
? [`--datadir=${join(directory, 'data', 'mariadb')}`, '--password=']
: [
'--no-defaults', '--no-defaults',
`--datadir=${join(directory, 'data', 'mariadb')}`, `--datadir=${join(directory, 'data', 'mariadb')}`,
`--tmpdir=${join(directory, 'tmp')}`, `--tmpdir=${join(directory, 'tmp')}`,
@@ -202,19 +227,32 @@ export function nativeServiceSpecs(project: NativeProjectDefinition): NativeServ
return [ return [
{ {
...common('database'), ...common('database'),
command: join(installedRoot(project), 'bin', 'mariadbd'), command: runtimeExecutable(project, 'mariadbd'),
args: [`--defaults-file=${join(directory, 'config', 'mariadb.cnf')}`], args: [
`--defaults-file=${join(directory, 'config', 'mariadb.cnf')}`,
...(process.platform === 'win32' ? ['--console'] : [])
],
ready: { port: project.ports.database, timeoutMs: 30000 } ready: { port: project.ports.database, timeoutMs: 30000 }
}, },
{ {
...common('php'), ...common('php'),
command: join(installedRoot(project), 'bin', 'php-fpm'), command: runtimeExecutable(project, process.platform === 'win32' ? 'php-cgi' : 'php-fpm'),
args: ['--nodaemonize', '--fpm-config', join(directory, 'config', 'php-fpm.conf')], args:
process.platform === 'win32'
? ['-b', `127.0.0.1:${project.ports.php}`]
: ['--nodaemonize', '--fpm-config', join(directory, 'config', 'php-fpm.conf')],
env:
process.platform === 'win32'
? {
PHPRC: join(directory, 'config', 'php.ini'),
PHP_FCGI_MAX_REQUESTS: '0'
}
: undefined,
ready: { port: project.ports.php } ready: { port: project.ports.php }
}, },
{ {
...common('web'), ...common('web'),
command: join(installedRoot(project), 'bin', 'nginx'), command: runtimeExecutable(project, 'nginx'),
args: ['-c', join(directory, 'config', 'nginx.conf'), '-p', `${directory}/`], args: ['-c', join(directory, 'config', 'nginx.conf'), '-p', `${directory}/`],
ready: { port: project.ports.http } ready: { port: project.ports.http }
} }
+17 -1
View File
@@ -136,7 +136,13 @@ export async function installNativeRuntimeArchive(source: string): Promise<Auror
validateArchiveEntries(stdout) validateArchiveEntries(stdout)
await execFileAsync( await execFileAsync(
'tar', 'tar',
['-xzf', source, '--no-same-owner', '--no-same-permissions', '-C', staging], [
'-xzf',
source,
...(process.platform === 'win32' ? [] : ['--no-same-owner', '--no-same-permissions']),
'-C',
staging
],
{ maxBuffer: 16 * 1024 * 1024 } { maxBuffer: 16 * 1024 * 1024 }
) )
await rejectLinks(staging) await rejectLinks(staging)
@@ -188,6 +194,16 @@ export async function installBundledNativeRuntime(): Promise<AuroraRuntimeStatus
return installNativeRuntimeArchive(join(directory, basename(archive))) return installNativeRuntimeArchive(join(directory, basename(archive)))
} }
export async function ensureBundledNativeRuntime(): Promise<void> {
if ((await nativeStatus()).available) return
try {
await installBundledNativeRuntime()
} catch (error) {
// Development builds and platforms without a packaged target keep the manual installer available.
console.warn('Aurora Native bundled runtime was not installed:', error)
}
}
async function nativeStatus(): Promise<AuroraRuntimeStatus['native']> { async function nativeStatus(): Promise<AuroraRuntimeStatus['native']> {
if (!supportedPlatforms.has(process.platform) || !supportedArchitectures.has(process.arch)) if (!supportedPlatforms.has(process.platform) || !supportedArchitectures.has(process.arch))
return { return {