import { MrBuildSpecBuilderManifest } from '@cirrusct/mr-core'; import { DefaultSpecBuilderFactory } from './default'; import { NoopBuilderFactory } from './noop'; export const manifest: MrBuildSpecBuilderManifest = { builders: { default: { // Example of how to extend Cli args and options for a builder command in an externally // defined spec builder. // Not necessary here, as the commands themselves are defined in this package and can // define args and options as part of the command definition. // cli: { // build: { // arguments: [ // { // isOptional: true, // name: 'argLibTest', // } // ], // options: [ // { // name: 'optLibTest' // }, // ] // } // }, factory: DefaultSpecBuilderFactory.create, }, noop: { factory: NoopBuilderFactory.create, }, }, };