@sfdx-falcon/builder-library
Version:
Collection of functions for building pre-defined SFDX-Falcon Tasks, Questions, and Task Bundles. Allows developers to quickly build common Task and Interview-driven workflows in their CLI plugins. Part of the SFDX-Falcon Library.
15 lines (14 loc) • 848 B
TypeScript
/**
* @author Vivek M. Chawla <@VivekMChawla>
* @copyright 2019, Vivek M. Chawla / Salesforce. All rights reserved.
* @license BSD-3-Clause For full license text, see the LICENSE file in the repo root or
* `https://opensource.org/licenses/BSD-3-Clause`
* @file packages/builder-library/src/index.ts
* @summary Exports "builder" functions for Tasks, Questions, and Task Bundles.
* @description Exports a collection of pre-defined `Builder` classes that allow quick creation
* of `Listr`, `ListrTask`, `Questions`, and `TaskBundle` objects. Allows developers
* to quickly compose common Task and Interview-driven workflows in their CLI plugins.
*/
import * as QBLibrary from './questions';
import * as TBLibrary from './tasks';
export { QBLibrary, TBLibrary };