onepub-dev / dcli

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

optimise dcli compile so it only cleans once. #118

Closed bsutton closed 5 months ago

bsutton commented 3 years ago

Currently if you run 'dcli compile' over a directory it will perform a clean for each script. This is unnecessary as all of the scripts share a common directory.

As such we should clean the project once and then just compile the scripts. This should speed up compilations.

bsutton commented 3 years ago

clean is now refered to as warmup.

bsutton commented 5 months ago

no longer an issue.