shellx_core

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

shellx core

shellx_core #



A Core tool for Command-line Shell with listening stdin
Extend from kafka-shell

import 'dart:async';

import 'package:melos/melos.dart';
import 'package:shellx_core/shellx_core.dart';
import 'package:universal_io/io.dart';

Future<void> main(List<String> args) async {
final config = await MelosWorkspaceConfig.fromDirectory(Directory.current);
Shell()
..fromMelos(config.scripts.keys)
..run();
}

// Map.fromIterables(scripts, scripts.map((e) => MelosCommand(e)));

extension MeolsShell on Shell {
void fromMelos(Iterable<String> scripts) => scripts.forEach(addMelos);
void addMelos(String element) => addCommand(element, MelosCommand(element));
}

copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.

Related Products

More From This Creator