UNPKG

nx

Version:

The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.

18 lines (17 loc) 498 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.deduceDefaultBase = deduceDefaultBase; const child_process_1 = require("child_process"); function deduceDefaultBase() { const nxDefaultBase = 'main'; try { return ((0, child_process_1.execSync)('git config --get init.defaultBranch', { windowsHide: false, }) .toString() .trim() || nxDefaultBase); } catch { return nxDefaultBase; } }