nexe
Version:
Create a single executable out of your Node.js application
90 lines (89 loc) • 4.27 kB
JavaScript
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
const path_1 = require("path");
const fs = __importStar(require("fs"));
const util_1 = require("util");
const util_2 = require("../util");
const mkdirpAsync = require("mkdirp");
const unlinkAsync = (0, util_1.promisify)(fs.unlink), readdirAsync = (0, util_1.promisify)(fs.readdir);
function readDirAsync(dir) {
return readdirAsync(dir).then((paths) => {
return Promise.all(paths.map((file) => {
const path = (0, path_1.join)(dir, file);
return (0, util_2.isDirectoryAsync)(path).then((x) => (x ? readDirAsync(path) : path));
})).then((result) => {
return [].concat(...result);
});
});
}
function maybeReadFileContentsAsync(file) {
return (0, util_2.readFileAsync)(file, 'utf-8').catch((e) => {
if (e.code === 'ENOENT') {
return '';
}
throw e;
});
}
/**
* The artifacts step is where source patches are committed, or written as "artifacts"
* Steps:
* - A temporary directory is created in the downloaded source
* - On start, any files in that directory are restored into the source tree
* - After the patch functions have run, the temporary directory is emptied
* - Original versions of sources to be patched are written to the temporary directory
* - Finally, The patched files are written into source.
*/
function artifacts(compiler, next) {
return __awaiter(this, void 0, void 0, function* () {
const { src } = compiler;
const temp = (0, path_1.join)(src, 'nexe');
yield mkdirpAsync(temp);
const tmpFiles = yield readDirAsync(temp);
yield Promise.all(tmpFiles.map((path) => __awaiter(this, void 0, void 0, function* () {
return compiler.writeFileAsync(path.replace(temp, ''), yield (0, util_2.readFileAsync)(path, 'utf-8'));
})));
yield next();
yield Promise.all(tmpFiles.map((x) => unlinkAsync(x)));
return Promise.all(compiler.files.map((file) => __awaiter(this, void 0, void 0, function* () {
const sourceFile = (0, path_1.join)(src, file.filename);
const tempFile = (0, path_1.join)(temp, file.filename);
const fileContents = yield maybeReadFileContentsAsync(sourceFile);
yield mkdirpAsync((0, path_1.dirname)(tempFile));
yield (0, util_2.writeFileAsync)(tempFile, fileContents);
yield compiler.writeFileAsync(file.filename, file.contents);
})));
});
}
exports.default = artifacts;
;