Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dart: add Polish translation #12743

Merged
merged 3 commits into from
May 11, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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 przestażałe zależności projektu w celu obsługi null-safety:
spageektti marked this conversation as resolved.
Show resolved Hide resolved

`dart pub upgrade --null-safety`

- Kompiluj plik Dart do natywnego pliku binarnego:
spageektti marked this conversation as resolved.
Show resolved Hide resolved

`dart compile exe {{ścieżka/do/pliku.dart}}`

- Zastosuj automatyczne poprawki dla obecnego projektu:

`dart fix --apply`