A set of common reusable Grinder tasks.
Add a dependency to the packages grinder
and bwu_grinder_tasks
to your
dependencies in pubspec.yaml
and add the file tool/grind.dart
with the
following content to your project:
export 'package:bwu_grinder_tasks/bwu_grinder_tasks.dart';
Then you can run it from your project root directory with
grind
# or
grind check
# or
grind format
# ...
If you just want to use a few of the tasks but not all you can hide tasks
you don't want to use and also add your own tasks. The following example
suppresses browser tests.
If you want to customize the tasks, you always need to implement your own
main()
method (and hide the provided main()
).
library bwu_dart_archive_downloader.tool.grind;
export 'package:bwu_utils_dev/grinder/default_tasks.dart' hide main, lint, check,
travis;
import 'package:bwu_utils_dev/grinder/default_tasks.dart' show grind;
main(List<String> args) {
grind(args);
}
@Task('some task')
some() => print('did something');
What doesn't work is to hide a task which is a dependency for another task. You
also need to hide the task which depends on the task you want to hide.
In the example above we hide the lint
task and also need to hide check
and
travis
which depend on lint
.
Instead of hiding and reimplementing a task you can just assign a custom implementation to a task.
The provided tasks are split in three parts.
@Task()
, @DefaultTask
and @Depends()
annotation,@Task('Run lint checks')
lint() => lintTask();
Function lintTask = lintTaskImpl;
lintTaskImpl() => new PubApp.global('linter')
.run(['--stats', '-ctool/lintcfg.yaml']..addAll(existingSourceDirs));
If you want to change or extend the behavior of the lint task you can do this like:
library bwu_dart_archive_downloader.tool.grind;
export 'package:bwu_utils_dev/grinder/default_tasks.dart' hide main;
import 'package:bwu_utils_dev/grinder/default_tasks.dart'
show grind, lintTask, lintTaskImpl;
main(List<String> args) {
lintTask = () {
print('before linting');
testTaskImpl(['vm']);
print('after linting');
grind(args);
}
pub global run
instead.Add this to your package's pubspec.yaml file:
dependencies:
bwu_grinder_tasks: "^0.1.0"
You can install packages from the command line:
with pub:
$ pub get
with Flutter:
$ flutter packages get
Alternatively, your editor might support pub get
or packages get
.
Check the docs for your editor to learn more.
Now in your Dart code, you can use:
import 'package:bwu_grinder_tasks/bwu_grinder_tasks.dart';
Version | Uploaded | Documentation | Archive |
---|---|---|---|
0.1.0 | Jun 15, 2015 |
|
|
0.1.1-dev.7 | Apr 13, 2017 |
|
|
0.1.1-dev.5 | Feb 4, 2017 |
|
|
0.1.1-dev.4 | Feb 4, 2017 |
|
|
0.1.1-dev.3 | Apr 14, 2016 |
|
|
0.1.1-dev.2 | Apr 9, 2016 |
|
|
0.1.1-dev.1 | Nov 13, 2015 |
|
|
0.1.1-dev.0 | Jul 14, 2015 |
|
|
We analyzed this package on Apr 23, 2018, and provided a score, details, and suggestions below. Analysis was completed with status completed using:
Popularity:
Describes how popular the package is relative to other packages.
[more]
|
61 | / 100 |
Health:
Code health derived from static analysis.
[more]
|
98 | / 100 |
Maintenance:
Reflects how tidy and up-to-date the package is.
[more]
|
0 | / 100 |
Overall score:
Weighted score of the above.
[more]
|
60 |
Detected platforms: Flutter, other
Primary library:
package:bwu_grinder_tasks/bwu_grinder_tasks.dart
with components:io
.
Package is pre-v1 release.
While there is nothing inherently wrong with versions of
0.*.*
, it usually means that the author is still experimenting with the general direction API.
Maintain an example.
Create a short demo in the
example/
directory to show how to use this package. Common file name patterns include:main.dart
,example.dart
or you could also usebwu_grinder_tasks.dart
.
Fix analysis and formatting issues.
Analysis or formatting checks reported 4 hints.
Run
dartfmt
to formatlib/bwu_grinder_tasks.dart
.Run
dartfmt
to formatlib/src/analyzer_task.dart
.Similar analysis of the following files failed:
lib/src/dartformat_task.dart
(hint)
Package | Constraint | Resolved | Available |
---|---|---|---|
Direct dependencies | |||
Dart SDK | >=1.9.0 <2.0.0 | ||
grinder | >=0.7.1+3 <0.8.0 | 0.7.2 | 0.8.1 |
Transitive dependencies | |||
ansicolor | 0.0.9 | 0.1.0 | |
args | 0.13.7 | 1.4.2 | |
async | 2.0.6 | ||
charcode | 1.1.1 | ||
cli_util | 0.0.1+2 | 0.1.2+1 | |
collection | 1.14.9 | ||
glob | 1.1.5 | ||
logging | 0.11.3+1 | ||
mockable_filesystem | 0.0.3 | ||
path | 1.5.1 | ||
source_span | 1.4.0 | ||
string_scanner | 1.0.2 | ||
supports_color | 0.1.1 | ||
unscripted | 0.6.2 | ||
when | 0.2.0 | ||
which | 0.1.3 | ||
Dev dependencies | |||
test | >=0.12.0 <0.13.0 |