@joberstein12/commit-history-validator
Version:
Validates commits and release according to the conventional commit specification.
70 lines (50 loc) • 2.85 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.getWorkspaceNames = exports.getWorkingProjectDirectory = exports.getFileName = exports.getExecutingProjectDirectory = void 0;
var _path = require("path");
var _child_process = require("child_process");
function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
var encoding = 'utf-8';
var getFileName = function getFileName(filename) {
return (0, _path.parse)(filename).name;
};
exports.getFileName = getFileName;
var getExecutingProjectDirectory = function getExecutingProjectDirectory() {
var parentLevels = 2;
return _toConsumableArray(Array(parentLevels).keys()).reduce(function (path) {
return (0, _path.dirname)(path);
}, (0, _path.parse)(__filename).dir);
};
exports.getExecutingProjectDirectory = getExecutingProjectDirectory;
var getWorkingProjectDirectory = function getWorkingProjectDirectory() {
var command = "git rev-parse --show-toplevel";
return (0, _child_process.execSync)(command, {
encoding: encoding
}).trim();
};
exports.getWorkingProjectDirectory = getWorkingProjectDirectory;
var getWorkspaceNames = function getWorkspaceNames() {
var _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},
cwd = _ref.cwd;
var stdio = ['pipe', 'pipe', 'ignore'];
var command = 'yarn workspaces --json info';
try {
var workspacesInfo = JSON.parse((0, _child_process.execSync)(command, {
cwd: cwd,
encoding: encoding,
stdio: stdio
}));
var workspaces = JSON.parse(workspacesInfo.data);
return Object.keys(workspaces);
} catch (ignored) {
return [];
}
};
exports.getWorkspaceNames = getWorkspaceNames;