Replace deprecated commands with new dart commands #55
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This Sourcegraph batch replaces deprecated commands from the Dart SDK with the new ones.
All new CLI commands now live under the main
dart
executable. See this issue for the detailsdart-lang/sdk#46100
This PR might need to be checked or tweaked for possible errors in the arguments to
dart analyze
anddart format
since they take slightly different arguments than the original.In most cases for analyze all the arguments can be removed and it can just be
dart analyze
.Some of the argument changes were difficult to match and replace in an automated way. Since
there are only a few places that might break, it'll be easier to let the batch create the PR
and then manually adjust them.
Argument changes for dartfmt -> dart format
-w
should be removed automatically since overwriting files is now the default. But, if you spot one, remove it.--dry-run
is not a supported argument now. Replace with--set-exit-if-changed -o none
repos that look like they will need updates for dart format
Argument changes for dartanalyzer -> dart analyze
--no-hints
and--no-lints
are removedrepos that look like they will need updates for dart analyze
QA steps:
dart analyze
ordart format
check the argumentsCreated by Sourcegraph batch change
Workiva/dart_commands
.