MelosWorkspaceConfig constructor

MelosWorkspaceConfig({
  1. required String path,
  2. required String name,
  3. String? sdkPath,
  4. HostedGitRepository? repository,
  5. required List<Glob> packages,
  6. List<Glob> ignore = const [],
  7. Scripts scripts = Scripts.empty,
  8. IDEConfigs ide = IDEConfigs.empty,
  9. CommandConfigs commands = CommandConfigs.empty,
})

Implementation

MelosWorkspaceConfig({
  required this.path,
  required this.name,
  this.sdkPath,
  this.repository,
  required this.packages,
  this.ignore = const [],
  this.scripts = Scripts.empty,
  this.ide = IDEConfigs.empty,
  this.commands = CommandConfigs.empty,
}) {
  _validate();
}