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

add -d abbreviation for --delete-conflicting-outputs #3378

Merged
merged 1 commit into from Oct 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 4 additions & 0 deletions build_runner/CHANGELOG.md
@@ -1,3 +1,7 @@
## 2.3.0

- Add `-d` as a shorthand for `--delete-conflicting-outputs`.

## 2.2.1

- Allow the latest `package:analyzer`.
Expand Down
1 change: 1 addition & 0 deletions build_runner/lib/src/entrypoint/base_command.dart
Expand Up @@ -39,6 +39,7 @@ abstract class BuildRunnerCommand extends Command<int> {
'Enabling this option skips the prompt and deletes the files. '
'This should typically be used in continues integration servers '
'and tests, but not otherwise.',
abbr: 'd',
negatable: false,
defaultsTo: false)
..addFlag(lowResourcesModeOption,
Expand Down
2 changes: 1 addition & 1 deletion build_runner/pubspec.yaml
@@ -1,5 +1,5 @@
name: build_runner
version: 2.2.1
version: 2.3.0
description: A build system for Dart code generation and modular compilation.
repository: https://github.com/dart-lang/build/tree/master/build_runner

Expand Down