Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/src/core_config.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/// command-line usage across Dart projects.
library dart_dev.src.core_config;

import 'package:dart_dev/dart_dev.dart';


Map<String, DevTool> get coreConfig => {
'analyze': AnalyzeTool(),
Expand Down
2 changes: 1 addition & 1 deletion lib/src/dart_dev_runner.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import 'dart:async';

import 'package:args/args.dart';
import 'package:args/command_runner.dart';
import 'package:dart_dev/dart_dev.dart';


import 'dart_dev_tool.dart';
import 'events.dart' as events;
Expand Down
2 changes: 1 addition & 1 deletion lib/src/dart_dev_tool.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import 'dart:io';

import 'package:args/args.dart';
import 'package:args/command_runner.dart';
import 'package:dart_dev/dart_dev.dart';


import 'tools/function_tool.dart';
import 'utils/verbose_enabled.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/executable.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import 'package:analyzer/dart/analysis/utilities.dart';
import 'package:args/command_runner.dart';
import 'package:collection/collection.dart';
import 'package:crypto/crypto.dart';
import 'package:dart_dev/dart_dev.dart';

import 'package:dart_dev/src/utils/parse_imports.dart';
import 'package:dart_dev/src/utils/pubspec_lock.dart';
import 'package:glob/glob.dart';
Expand Down
4 changes: 2 additions & 2 deletions lib/src/tools/analyze_tool.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ final _log = Logger('Analyze');
///
/// To use this tool in your project, include it in the dart_dev config in
/// `tool/dart_dev/config.dart`:
/// import 'package:dart_dev/dart_dev.dart';
///
///
/// final config = {
/// 'analyze': AnalyzeTool() ..useDartAnalyze = true,
Expand All @@ -33,7 +33,7 @@ final _log = Logger('Analyze');
///
/// This tool can be configured by modifying any of its fields:
/// // tool/dart_dev/config.dart
/// import 'package:dart_dev/dart_dev.dart';
///
///
/// final config = {
/// 'analyze': AnalyzeTool()
Expand Down
4 changes: 2 additions & 2 deletions lib/src/tools/compound_tool.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import 'dart:async';
import 'dart:math';

import 'package:args/args.dart';
import 'package:dart_dev/dart_dev.dart';

import 'package:logging/logging.dart';

import '../dart_dev_tool.dart';
Expand Down Expand Up @@ -32,7 +32,7 @@ ArgResults takeOptionArgs(ArgParser parser, ArgResults results) =>
/// positional args given to the compound target.
///
/// // tool/dart_dev/config.dart
/// import 'package:dart_dev/dart_dev.dart';
///
///
/// final config = {
/// 'test': CompoundTool()
Expand Down
4 changes: 2 additions & 2 deletions lib/src/tools/format_tool.dart
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ final _log = Logger('Format');
///
/// To use this tool in your project, include it in the dart_dev config in
/// `tool/dart_dev/config.dart`:
/// import 'package:dart_dev/dart_dev.dart';
///
///
/// final config = {
/// 'format': FormatTool(),
Expand All @@ -36,7 +36,7 @@ final _log = Logger('Format');
///
/// This tool can be configured by modifying any of its fields:
/// // tool/dart_dev/config.dart
/// import 'package:dart_dev/dart_dev.dart';
///
///
/// final config = {
/// 'format': FormatTool()
Expand Down
4 changes: 2 additions & 2 deletions lib/src/tools/over_react_format_tool.dart
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import 'dart:async';
import 'dart:io';

import 'package:dart_dev/dart_dev.dart';
import 'package:dart_dev/utils.dart';



import '../utils/executables.dart' as exe;
import 'format_tool.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/tools/process_tool.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ final _log = Logger('Process');
/// process, waits for it to complete, and forwards its exit code.
///
/// To create a [ProcessTool], all that is needed is an executable and args:
/// import 'package:dart_dev/dart_dev.dart';
///
///
/// final config = {
/// 'github': ProcessTool(
Expand Down
4 changes: 2 additions & 2 deletions lib/src/tools/test_tool.dart
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ final _log = Logger('Test');
///
/// To use this tool in your project, include it in the dart_dev config in
/// `tool/dart_dev/config.dart`:
/// import 'package:dart_dev/dart_dev.dart';
///
///
/// final config = {
/// 'test': TestTool(),
Expand All @@ -36,7 +36,7 @@ final _log = Logger('Test');
///
/// This tool can be configured by modifying any of its fields:
/// // tool/dart_dev/config.dart
/// import 'package:dart_dev/dart_dev.dart';
///
///
/// final config = {
/// 'test': TestTool()
Expand Down
4 changes: 2 additions & 2 deletions lib/src/tools/tuneup_check_tool.dart
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ final _log = Logger('TuneupCheck');
///
/// To use this tool in your project, include it in the dart_dev config in
/// `tool/dart_dev/config.dart`:
/// import 'package:dart_dev/dart_dev.dart';
///
///
/// final config = {
/// 'analyze': TuneupCheckTool(),
Expand All @@ -32,7 +32,7 @@ final _log = Logger('TuneupCheck');
///
/// This tool can be configured by modifying any of its fields:
/// // tool/dart_dev/config.dart
/// import 'package:dart_dev/dart_dev.dart';
///
///
/// final config = {
/// 'analyze': TuneupCheckTool()
Expand Down
4 changes: 2 additions & 2 deletions lib/src/tools/webdev_serve_tool.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ final _log = Logger('WebdevServe');
///
/// To use this tool in your project, include it in the dart_dev config in
/// `tool/dart_dev/config.dart`:
/// import 'package:dart_dev/dart_dev.dart';
///
///
/// final config = {
/// 'serve': WebdevServeTool(),
Expand All @@ -35,7 +35,7 @@ final _log = Logger('WebdevServe');
///
/// This tool can be configured by modifying any of its fields:
/// // tool/dart_dev/config.dart
/// import 'package:dart_dev/dart_dev.dart';
///
///
/// final config = {
/// 'serve': WebdevServeTool()
Expand Down
Loading