@nx/expo
Version:
14 lines (13 loc) • 592 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.processPrebuildOptions = processPrebuildOptions;
const process_generic_options_1 = require("./process-generic-options");
function processPrebuildOptions(tree, options, projectName, projectRoot, migrationLogs) {
const args = [];
if ('install' in options && options.install === false) {
args.push('--no-install');
delete options.install;
}
options.args = args;
(0, process_generic_options_1.processGenericOptions)(tree, options, projectName, projectRoot, migrationLogs);
}