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

Fix #189 #190

Closed
wants to merge 2 commits into from
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/grinder.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// governed by a BSD-style license that can be found in the LICENSE file.

/**
* A task based, dependency aware build system.
* All your darty work, automated.
*
* See the [README][] for detailed usage information.
*
Expand Down
10 changes: 2 additions & 8 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,24 +1,18 @@
name: grinder
# This version must be updated in tandem with the lib/src/cli.dart version.
version: 0.7.0-dev.2
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd like to keep this comment - it helps me remember which projects are ones where I need to update source files in tandem with the pubspec files.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ugh, I forgot that the dart editor pubspec editor mangles the formatting. Hopefully we can fix that soon.

description: Grinder - a task based, dependency aware build system.

homepage: https://github.com/google/grinder.dart
author: Devon Carew <[email protected]>

description: All your darty work, automated.
homepage: https://github.com/google/grinder.dart
environment:
sdk: '>=1.0.0 <2.0.0'

dependencies:
args: '>=0.10.0 <0.14.0'
cli_util: '>=0.0.1 <0.1.0'
glob: '>=1.0.0 <2.0.0'
http_server: '>=0.9.0 <0.10.0'
which: '>=0.1.2 <0.2.0'

dev_dependencies:
browser: any
unittest: any

executables:
grind: grinder
2 changes: 2 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Grinder for Dart

> All your darty work, automated.

Grinder consists of a library to define project tasks (e.g. test, build, doc),
and a command-line tool to run them.

Expand Down