2019-03-12 22:07:57 +00:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright 2019 Balena Ltd.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
2019-05-08 01:33:08 +00:00
|
|
|
import * as Bluebird from 'bluebird';
|
2017-12-14 11:29:54 +00:00
|
|
|
import * as filehound from 'filehound';
|
2019-03-12 22:07:57 +00:00
|
|
|
import * as fs from 'fs-extra';
|
|
|
|
import * as path from 'path';
|
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-10-19 14:38:50 +00:00
|
|
|
execPkg(['--target', 'host', '--output', 'build-bin/balena', 'package.json'])
|
2019-05-08 01:33:08 +00:00
|
|
|
.then(() => {
|
|
|
|
const xpaths: Array<[string, string[]]> = [
|
|
|
|
// [platform, [path, to, file]]
|
|
|
|
['*', ['opn', 'xdg-open']],
|
|
|
|
['darwin', ['denymount', 'bin', 'denymount']],
|
|
|
|
];
|
|
|
|
return Bluebird.map(xpaths, ([platform, xpath]) => {
|
|
|
|
if (platform === '*' || platform === process.platform) {
|
|
|
|
// eg copy from node_modules/opn/xdg-open to build-bin/xdg-open
|
|
|
|
return fs.copy(
|
|
|
|
path.join(ROOT, 'node_modules', ...xpath),
|
|
|
|
path.join(ROOT, 'build-bin', xpath.pop()!),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}).return();
|
|
|
|
})
|
2018-01-09 15:05:24 +00:00
|
|
|
.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
|
|
|
});
|