run static method

void run(
  1. String melos
)

Implementation

static void run(String melos) {
  if (which('melos').notfound) {
    'dart pub global activate melos'.run;
  }
  if (!exists(join(current, 'melos.yaml'))) {
    init();
  }
  melos.run;
}