2017-12-13 14:08:36 +00:00
|
|
|
import * as path from 'path';
|
|
|
|
import * as fs from 'fs-extra';
|
2017-12-14 11:29:54 +00:00
|
|
|
import * as filehound from 'filehound';
|
2017-12-13 14:08:36 +00:00
|
|
|
import { exec as execPkg } from 'pkg';
|
|
|
|
|
|
|
|
const ROOT = path.join(__dirname, '..');
|
|
|
|
|
|
|
|
console.log('Building package...\n');
|
|
|
|
|
2018-01-09 15:05:24 +00:00
|
|
|
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 => {
|
|
|
|
console.log(`\nCopying to build-bin:\n${nativeExtensions.join('\n')}`);
|
2017-12-13 14:08:36 +00:00
|
|
|
|
2018-01-09 15:05:24 +00:00
|
|
|
return nativeExtensions.map(extPath => {
|
|
|
|
return fs.copy(
|
|
|
|
extPath,
|
|
|
|
extPath.replace(
|
|
|
|
path.join(ROOT, 'node_modules'),
|
|
|
|
path.join(ROOT, 'build-bin'),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
});
|
2017-12-13 14:08:36 +00:00
|
|
|
});
|