@tywalk/pcf-helper
Version:
Command line helper for building and publishing PCF controls to Dataverse.
12 lines (11 loc) • 488 B
TypeScript
/**
* Builds the Power Apps component framework project.
*
* @param {string} path The path to the project folder containing the pcfproj.json file.
* @param {boolean} verbose - If true, additional debug information is logged.
* @param {number} [timeout] - Optional timeout in milliseconds for the build process.
*
* @returns {number} The exit code of the spawned process.
*/
declare function runBuild(path: string, verbose: boolean, timeout?: number): number;
export { runBuild };