forked from tldr-pages/tldr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dart: add Polish translation (tldr-pages#12743)
Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
- Loading branch information
1 parent
8a9393f
commit 38b304b
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# dart | ||
|
||
> Zarządzaj projektami Dart. | ||
> Więcej informacji: <https://dart.dev/tools/dart-tool>. | ||
- Zainicjuj nowy projekt Dart w katalogu o tej samej nazwie: | ||
|
||
`dart create {{nazwa_projektu}}` | ||
|
||
- Uruchom plik Dart: | ||
|
||
`dart run {{ścieżka/do/pliku.dart}}` | ||
|
||
- Pobierz zależności dla obecnego projektu: | ||
|
||
`dart pub get` | ||
|
||
- Uruchom testy jednostkowe dla obecnego projektu: | ||
|
||
`dart test` | ||
|
||
- Aktualizuj przestarzałe zależności projektu w celu obsługi null-safety: | ||
|
||
`dart pub upgrade --null-safety` | ||
|
||
- Skompiluj plik Dart do natywnego pliku binarnego: | ||
|
||
`dart compile exe {{ścieżka/do/pliku.dart}}` | ||
|
||
- Zastosuj automatyczne poprawki dla obecnego projektu: | ||
|
||
`dart fix --apply` |