onepub-dev / dcli

An extensive library and tooling for building console/cli applications and scripts using the Dart programming language.
236 stars 26 forks source link

consider changing 'start' to use a builder #181

Closed bsutton closed 3 months ago

bsutton commented 2 years ago

We have trouble with users incorrectly using the start method.

'ls *.dart'
           .start(workingDirectory: INSTALL_PATH)
           .toList()
           .forEach((line) => {result += line});

Using a builder

bsutton commented 3 months ago

May look at this as part of halfpipe, but for now closing this.