@gobstones/gobstones-scripts
Version:
Scripts to abstract away build configuration of Gobstones Project's libraries and modules.
14 lines • 574 B
TypeScript
/**
* Get the string representing the command to run on a bash shell
* for a particular bin executable of a node's package. If no bin
* is specified, the name of the package is used as executable name.
* If the binary is not found, it will use an echo that outputs
* the not found binary file.
*
* @param packageName - The package that contains the executable.
* @param binName - The executable binary.
*
* @returns The string for the command.
*/
export declare const runBin: (packageName: string, binName?: string) => string;
//# sourceMappingURL=runBin.d.ts.map