ConstructRunner constructor
ConstructRunner({})
Implementation
ConstructRunner({
required this.constructs,
required this.rootPath,
required super.logger,
required FileSystem fs,
required Analyzer analyzer,
}) : super('', 'Generates the construct') {
addCommand(
DevCommand(
fs: fs,
rootPath: rootPath,
constructs: constructs,
logger: logger,
analyzer: analyzer,
),
);
addCommand(
BuildCommand(
fs: fs,
rootPath: rootPath,
constructs: constructs,
logger: logger,
analyzer: analyzer,
),
);
}