mirror of
https://github.com/balena-io/balena-cli.git
synced 2025-03-10 22:44:14 +00:00
35 lines
839 B
TypeScript
35 lines
839 B
TypeScript
|
import * as path from 'path';
|
||
|
import * as fs from 'fs-extra';
|
||
|
import * as FileHound from 'filehound';
|
||
|
import { exec as execPkg } from 'pkg';
|
||
|
|
||
|
const ROOT = path.join(__dirname, '..');
|
||
|
|
||
|
console.log('Building package...\n');
|
||
|
|
||
|
execPkg([
|
||
|
'--target', 'host',
|
||
|
'--output', 'build-bin/resin',
|
||
|
'package.json'
|
||
|
]).then(() => fs.copy(
|
||
|
path.join(ROOT, 'node_modules', 'opn', 'xdg-open'),
|
||
|
path.join(ROOT, 'build-bin', 'xdg-open')
|
||
|
)).then(() => {
|
||
|
return FileHound.create()
|
||
|
.paths(path.join(ROOT, 'node_modules'))
|
||
|
.ext(['node', 'dll'])
|
||
|
.find();
|
||
|
}).then((nativeExtensions: string[]) => {
|
||
|
console.log(`\nCopying to build-bin:\n${nativeExtensions.join('\n')}`);
|
||
|
|
||
|
return nativeExtensions.map((extPath) => {
|
||
|
return fs.copy(
|
||
|
extPath,
|
||
|
extPath.replace(
|
||
|
path.join(ROOT, 'node_modules'),
|
||
|
path.join(ROOT, 'build-bin')
|
||
|
)
|
||
|
);
|
||
|
});
|
||
|
});
|