mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2024-11-17 11:07:04 +01:00
Nicco
d7e5a34b14
* move to packages * update deps * update deps * actions maintenance * don't use blob * cli * fix default import * use synthetic default imports * remove comment * cli packaging * node 18 guard * packages * build system * testing * test pipeline * pipelines * changelog * version bump * update locales * update deps * update deps * update dependecies
18 lines
396 B
JavaScript
Executable File
18 lines
396 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
import { exec } from 'pkg'
|
|
|
|
const targets = [
|
|
'node18-macos-arm64',
|
|
'node18-macos-x64',
|
|
'node18-linux-arm64',
|
|
'node18-linux-x64',
|
|
'node18-win-arm64',
|
|
'node18-win-x64',
|
|
]
|
|
|
|
for (const target of targets) {
|
|
console.log(`🚀 Building ${target}`)
|
|
await exec(['./dist/index.cjs', '--target', target, '--output', `./bin/${target.replace('node18', 'cryptgeon')}`])
|
|
}
|