Skip to content

Commit

Permalink
dart: add Polish translation (#12743)
Browse files Browse the repository at this point in the history
Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
  • Loading branch information
spageektti and acuteenvy committed May 11, 2024
1 parent 8a9393f commit 38b304b
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions pages.pl/common/dart.md
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`

0 comments on commit 38b304b

Please sign in to comment.