Currently, dpx is written to support Dart 2.19 and Dart 3. We will eventually
drop support for Dart 2, but until then, all dependency ranges need to take this
into account and all CI checks (static analysis and tests) should pass on both
major versions of Dart. Additionally, language features that require Dart 3+ are
not yet used.
- Install dependencies:
dart pub get - Analysis:
dart analyze - Tests:
dart test - Running:
dart bin/dpx.dartdart pub global activate -spath .to activate anddart pub global run dpxto run (or justdpxif global Dart executables are added to your path).
- Debugging:
- In VS Code, use the
DPX CLIlaunch configuration. This will startdpxin interactive mode and open a terminal where you can enter the args. This will let you use the debugger and set breakpoints.
- In VS Code, use the