@alexaegis/workspace-tools
Version:
Tools for working with javascript workspaces
7 lines (6 loc) • 366 B
JavaScript
;
const getWorkspaceRoot_function = require("./get-workspace-root.function-CMUtTfQo.cjs");
const getCurrentPackageRoot = (cwd = process.cwd()) => {
return getWorkspaceRoot_function.collectFileDirnamePathsUpDirectoryTree(getWorkspaceRoot_function.PACKAGE_JSON_NAME, { cwd, maxPackages: 1 })[0];
};
exports.getCurrentPackageRoot = getCurrentPackageRoot;