@arthurgubaidullin/nx-embed-dependencies
Version:
This plugin for [Nx](https://nx.dev) helps injecting local dependencies into a package.
8 lines (7 loc) • 323 B
TypeScript
import * as IOE from 'fp-ts/IOEither';
interface CWD {
readonly cwd: string;
}
export declare function publishPackage(context: CWD, pathToPackage: string): IOE.IOEither<Error, string>;
export declare function addPackage(context: CWD, targetPackage: string, packageName: string): IOE.IOEither<Error, string>;
export {};