mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00
dart: add page (#6351)
This commit is contained in:
parent
521c5ef693
commit
0974866e08
1 changed files with 28 additions and 0 deletions
28
pages/common/dart.md
Normal file
28
pages/common/dart.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
# dart
|
||||
|
||||
> The tool for managing Dart projects.
|
||||
> More information: <https://dart.dev/tools/dart-tool>.
|
||||
|
||||
- Initialize a new Dart project in a directory of the same name:
|
||||
|
||||
`dart create {{project_name}}`
|
||||
|
||||
- Run a Dart file:
|
||||
|
||||
`dart run {{path/to/file.dart}}`
|
||||
|
||||
- Download dependencies for the current project:
|
||||
|
||||
`dart pub get`
|
||||
|
||||
- Run unit tests for the current project:
|
||||
|
||||
`dart test`
|
||||
|
||||
- Update an outdated project's dependencies to support null-safety:
|
||||
|
||||
`dart pub upgrade --null-safety`
|
||||
|
||||
- Compile a Dart file to a native binary:
|
||||
|
||||
`dart compile exe {{path/to/file.dart}}`
|
Loading…
Add table
Reference in a new issue