-
-
Save gusenov/e53e88d71f46ede3a9334af9921bc2aa to your computer and use it in GitHub Desktop.
A command-line utility for Dart development.
This file contains hidden or 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
| The Dart CLI developer tool uses Google Analytics to report usage and diagnostic | |
| data along with package dependencies, and crash reporting to send basic crash | |
| reports. This data is used to help improve the Dart platform, Flutter framework, | |
| and related tools. | |
| Telemetry is not sent on the very first run. To disable reporting of telemetry, | |
| run this terminal command: | |
| dart --disable-analytics | |
| If you opt out of telemetry, an opt-out event will be sent, and then no further | |
| information will be sent. This data is collected in accordance with the Google | |
| Privacy Policy (https://policies.google.com/privacy). | |
| A command-line utility for Dart development. | |
| Usage: dart <command|dart-file> [arguments] | |
| Global options: | |
| -v, --verbose Show additional command output. | |
| --version Print the Dart SDK version. | |
| --enable-analytics Enable analytics. | |
| --disable-analytics Disable analytics. | |
| --suppress-analytics Disallow analytics for this `dart *` run without changing the analytics configuration. | |
| -h, --help Print this usage information. | |
| Available commands: | |
| analyze Analyze Dart code in a directory. | |
| compile Compile Dart to various formats. | |
| create Create a new Dart project. | |
| devtools Open DevTools (optionally connecting to an existing application). | |
| doc Generate API documentation for Dart projects. | |
| fix Apply automated fixes to Dart source code. | |
| format Idiomatically format Dart source code. | |
| info Show diagnostic information about the installed tooling. | |
| pub Work with packages. | |
| run Run a Dart program. | |
| test Run tests for a project. | |
| Run "dart help <command>" for more information about a command. | |
| See https://dart.dev/tools/dart-tool for detailed documentation. |
This file contains hidden or 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
| Analytics reporting disabled. In order to enable it, run: dart --enable-analytics |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment