@nativescript/nx
Version:
NativeScript Plugin for Nx
9 lines • 366 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.parseOptionName = parseOptionName;
function parseOptionName(flag) {
// strip just the option name from extra arguments
// --provision='match AppStore my.bundle.com' > provision
return flag.split('=')[0].replace('--', '');
}
//# sourceMappingURL=parse-option-name.js.map
;