UNPKG

@cdwr/nx-fly-deployment-action

Version:

The Nx Fly Deployment Action will manage your deployments to fly.io.

13 lines (12 loc) 411 B
import { type ProjectConfiguration } from '@nx/devkit'; /** * Get the project configuration. * * A verified project configuration contains the following fields: * - name * - sourceRoot * * @param projectName - The name of the project * @returns Project configuration or `null` if not found */ export declare const getProjectConfiguration: (projectName: string) => Promise<ProjectConfiguration | null>;