Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

33
dart Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# dart
> Manage 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}}`