UNPKG

@storm-software/build-tools

Version:

A comprehensive set of tools for building and managing projects within a Storm workspace. Includes builders such as rollup, rolldown, tsup, and unbuild, along with various utilities.

10 lines (7 loc) 416 B
import { NxJsonConfiguration, ProjectGraph, TaskGraph } from '@nx/devkit'; declare function getAllWorkspaceTaskGraphs(nxJson: NxJsonConfiguration, projectGraph: ProjectGraph): { taskGraphs: Record<string, TaskGraph>; errors: Record<string, string>; }; declare function createTaskId(projectId: string, targetId: string, configurationId?: string): string; export { createTaskId, getAllWorkspaceTaskGraphs };