mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
dart: add German translation (#8835)
This commit is contained in:
parent
29864eafc6
commit
eff491f003
1 changed files with 28 additions and 0 deletions
28
pages.de/common/dart.md
Normal file
28
pages.de/common/dart.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
# dart
|
||||
|
||||
> Das Werkzeug zur Verwaltung von Dart-Projekten.
|
||||
> Weitere Informationen: <https://dart.dev/tools/dart-tool>.
|
||||
|
||||
- Initialisiere ein neues Dart-Projekt in einem Verzeichnis mit demselben Namen:
|
||||
|
||||
`dart create {{projekt_name}}`
|
||||
|
||||
- Ausführen einer Dart-Datei:
|
||||
|
||||
`dart run {{pfad/zur/datei.dart}}`
|
||||
|
||||
- Herunterladen der Abhängigkeiten für das aktuelle Projekt:
|
||||
|
||||
`dart pub get`
|
||||
|
||||
- Ausführen von Unit-Tests für das aktuelle Projekt:
|
||||
|
||||
`dart test`
|
||||
|
||||
- Aktualisieren veralteter Projektabhängigkeiten, um Null-Sicherheit zu unterstützen:
|
||||
|
||||
`dart pub upgrade --null-safety`
|
||||
|
||||
- Kompilieren einer Dart-Datei in eine native Binärdatei:
|
||||
|
||||
`dart compile exe {{pfad/zur/datei.dart}}`
|
Loading…
Add table
Reference in a new issue