From 0974866e08a34a6f17331da9a48af6c86ce05090 Mon Sep 17 00:00:00 2001 From: pixel <35269695+pixelcmtd@users.noreply.github.com> Date: Mon, 23 Aug 2021 13:59:43 +0200 Subject: [PATCH] dart: add page (#6351) --- pages/common/dart.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/common/dart.md diff --git a/pages/common/dart.md b/pages/common/dart.md new file mode 100644 index 0000000000..2ee8be21e3 --- /dev/null +++ b/pages/common/dart.md @@ -0,0 +1,28 @@ +# dart + +> The tool for managing Dart projects. +> More information: . + +- 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}}`