Remove tools

This commit is contained in:
Mattia 2022-02-01 00:56:33 +01:00
parent 754ff337cc
commit 8360901e0f
3 changed files with 0 additions and 24 deletions

View File

@ -21,7 +21,6 @@ dev_dependencies:
build_runner: ^2.1.5
console: ^4.1.0
freezed: ^1.1.0
grinder: ^0.9.0
json_serializable: ^6.1.1
lint: ^1.8.1
test: ^1.19.5

View File

@ -1,2 +0,0 @@
# Analysis options to run test for ginder
include: package:pedantic/analysis_options.yaml

View File

@ -1,21 +0,0 @@
import 'package:grinder/grinder.dart';
final pub = sdkBin('pub');
void main(List<String> args) => grind(args);
@Task('Run tests')
void test() => TestRunner().testAsync();
@Task('Dart analysis')
void analysis() {}
@DefaultTask()
@Depends(test)
void build() {
Pub.build();
Pub.upgrade();
Pub.version();
}
@Task()
void clean() => defaultClean();