2019-01-16 01:36:09 +07:00
|
|
|
const fs = require("fs");
|
2019-02-06 00:15:20 +07:00
|
|
|
const fse = require("fs-extra");
|
2019-01-16 01:36:09 +07:00
|
|
|
const os = require("os");
|
|
|
|
const path = require("path");
|
2019-02-26 05:29:34 +07:00
|
|
|
|
|
|
|
const nexePath = require.resolve("nexe");
|
|
|
|
const shimPath = path.join(path.dirname(nexePath), "lib/steps/shim.js");
|
|
|
|
let shimContent = fs.readFileSync(shimPath).toString();
|
|
|
|
const replaceString = `global.nativeFs = { readdir: originalReaddir, readdirSync: originalReaddirSync };`;
|
|
|
|
shimContent = shimContent.replace(/compiler\.options\.resources\.length[\s\S]*wrap\("(.*\\n)"/g, (om, a) => {
|
|
|
|
return om.replace(a, `${a}${replaceString}`);
|
|
|
|
});
|
|
|
|
fs.writeFileSync(shimPath, shimContent);
|
|
|
|
|
2019-01-16 01:36:09 +07:00
|
|
|
const nexe = require("nexe");
|
2019-02-06 00:15:20 +07:00
|
|
|
|
2019-01-16 01:36:09 +07:00
|
|
|
nexe.compile({
|
|
|
|
debugBundle: true,
|
|
|
|
input: path.join(__dirname, "../out/cli.js"),
|
2019-02-22 00:55:42 +07:00
|
|
|
output: `cli-${process.env.TRAVIS_OS_NAME || os.platform()}`,
|
|
|
|
targets: [os.platform()],
|
2019-01-16 01:36:09 +07:00
|
|
|
/**
|
|
|
|
* To include native extensions, do NOT install node_modules for each one. They
|
|
|
|
* are not required as each extension is built using webpack.
|
|
|
|
*/
|
2019-02-26 05:29:34 +07:00
|
|
|
resources: [
|
2019-01-19 04:46:40 +07:00
|
|
|
path.join(__dirname, "../package.json"),
|
2019-02-06 00:15:20 +07:00
|
|
|
path.join(__dirname, "../build/**/*"),
|
2019-01-19 04:46:40 +07:00
|
|
|
],
|
2019-01-16 01:36:09 +07:00
|
|
|
});
|