UNPKG

workspace-tools

Version:

A collection of tools that are useful in a git-controlled monorepo that is managed by one of these software:

10 lines (9 loc) 313 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function findWorkspacePath(workspaces, packageName) { const workspace = workspaces.find(({ name }) => name === packageName); if (workspace) { return workspace.path; } } exports.findWorkspacePath = findWorkspacePath;