dir property

String get dir

Implementation

String get dir {
  var dir = _dirArgument.isEmpty ? 'output' : _dirArgument;
  return dir.startsWith('/')
      ? join(Directory.current.path, dir.replaceFirst('/', ''))
      : join(Directory.current.path, 'lib', dir);
}