1. 17 Mar, 2016 1 commit
  2. 14 Mar, 2016 2 commits
  3. 12 Mar, 2016 1 commit
  4. 11 Mar, 2016 2 commits
    • Devon Carew's avatar
      remove some references to DeviceStore · 5ad6a570
      Devon Carew authored
      5ad6a570
    • Ian Hickson's avatar
      Enable ALL THE LINTS · 1b9cd520
      Ian Hickson authored
      Well, all the easy ones, anyway.
      
      For some reason `// ignore:` isn't working for me so I've disabled
      lints that need that. Also disabled those that require a ton of work
      (which I'm doing, but not in this PR, to keep it reviewable).
      
      This adds:
      - avoid_init_to_null
      - library_names
      - package_api_docs
      - package_names
      - package_prefixed_library_names
      - prefer_is_not_empty
      - sort_constructors_first
      - sort_unnamed_constructors_first
      - unnecessary_getters_setters
      1b9cd520
  5. 04 Mar, 2016 1 commit
  6. 03 Mar, 2016 1 commit
  7. 28 Feb, 2016 1 commit
  8. 27 Feb, 2016 1 commit
  9. 26 Feb, 2016 2 commits
  10. 20 Feb, 2016 1 commit
    • yjbanov's avatar
      "flutter drive" command · a2b1bd46
      yjbanov authored
      Runs a test app and a driver test simultaneously, then stops the app.
      
      Usage:
      
      ```
      flutter drive --target=/path/to/test/app.dart
      ```
      
      This command will look for `/path/to/test/app_test.dart` by
      convention. We will expand into other ways of discovering tests in the
      future.
      a2b1bd46
  11. 17 Feb, 2016 2 commits
  12. 16 Feb, 2016 1 commit
  13. 15 Feb, 2016 1 commit
  14. 14 Feb, 2016 1 commit
  15. 13 Feb, 2016 1 commit
  16. 11 Feb, 2016 1 commit
  17. 10 Feb, 2016 3 commits
  18. 09 Feb, 2016 1 commit
  19. 06 Feb, 2016 2 commits
  20. 03 Feb, 2016 2 commits
  21. 28 Jan, 2016 1 commit
  22. 25 Jan, 2016 1 commit
  23. 22 Jan, 2016 2 commits
  24. 21 Jan, 2016 1 commit
  25. 20 Jan, 2016 1 commit
  26. 04 Jan, 2016 1 commit
  27. 29 Dec, 2015 1 commit
  28. 17 Dec, 2015 1 commit
    • Eric Seidel's avatar
      Fix `flutter apk` to work with resources · dd440d0c
      Eric Seidel authored
      I screwed up my last change, turns out the package command
      is sensitive about having all of its flags before args.
      
      Also made it possible to control the resources directory
      from the command line per the review comments in the previous change.
      
      @jason-simmons
      dd440d0c
  29. 16 Dec, 2015 1 commit
    • Eric Seidel's avatar
      Add support for bundling apk resources · 64bec536
      Eric Seidel authored
      I also made it so that `flutter apk -v` showed what
      commands it was running by moving off of a custom _run
      function onto the base/process.dart runChecked shared
      by other commands.
      
      @jason-simmons
      64bec536
  30. 01 Dec, 2015 1 commit
  31. 29 Nov, 2015 1 commit
    • Adam Barth's avatar
      Clean up code organization in flutter_tools · 9662d49e
      Adam Barth authored
      1) Moved basic utility code into base/ directory to make it clear which code
         doesn't depend on Flutter-specific knowldge.
      2) Move the CommandRunner subclasses into a runner/ directory because these
         aren't commands themselves.
      9662d49e