@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.
14 lines (13 loc) • 651 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/questions/index.ts
* @summary Exports a library of pre-defined Question Builders.
* @description Exports a library of pre-defined Question Builders.
*/
import * as Sfdx from './sfdx';
import * as General from './general';
import * as FileSystem from './filesystem';
export { Sfdx, General, FileSystem };