UNPKG

@doku-dev/doku-fragment

Version:

A new Angular UI library that moving away from Bootstrap and built from scratch.

18 lines (17 loc) 883 B
import { ProjectDefinition, WorkspaceDefinition } from '@schematics/angular/utility'; /** * Get project from workspace by name or get directly if single project. * @param tree Host tree * @param projectName Project name from schema * @returns Project definition or undefined */ export declare function getActiveProject(workspace: WorkspaceDefinition, projectName?: string): Promise<ProjectDefinition | undefined>; /** * Get options for the build target of the given project */ export declare function getProjectTargetOptions(project: ProjectDefinition, buildTarget: string): Record<string, import("@angular-devkit/core").JsonValue | undefined>; /** * Gets a style file with the given extension in a project and returns its path. If no * extension is specified, it will return null. */ export declare function getProjectStyleFile(project: ProjectDefinition): string | null;