flutter/packages/flutter_tools
Hixie b43722e79f Handle crashing engine.
When the engine dies unexpectedly during test execution, we have to
terminate any tests running in that engine. Previously, they would just
hang. For some reason that I was never able to satisfactorily explain,
the WebSocket doesn't die in a way I can detect in this case. So
instead, we hand in a future that we only complete when we detect the
server subprocess ends.
2015-11-02 11:19:19 -08:00
..
bin return exit codes on failures 2015-10-17 11:50:23 -07:00
lib Handle crashing engine. 2015-11-02 11:19:19 -08:00
test Merge pull request #156 from devoncarew/skip_test_windows 2015-10-31 13:57:46 -07:00
tool Port our testing framework to new test library 2015-10-29 14:07:24 -07:00
pubspec.yaml use stack_trace to create more readable exception traces 2015-11-02 00:20:22 -08:00
README.md Update README.md 2015-10-28 11:18:13 -07:00

tools

Build Status Build status pub package

Tools for building Flutter applications.

Installing

To install, run:

pub global activate sky_tools

or, depend on this package in your pubspec:

dev_dependencies:
  sky_tools: any

Running sky_tools

Run sky_tools (or pub global run sky_tools) to see a list of available commands:

  • init to create a new project

Then, run a sky_tools command:

sky_tools init --out my_sky_project

Running sky_tools:sky_server

To serve the current directory using sky_server:

pub run sky_tools:sky_server [-v] PORT

Running sky_tools:build_sky_apk

usage: pub run sky_tools:build_sky_apk <options>

-h, --help
    --android-sdk
    --skyx

Filing Issues

Please file reports on the GitHub Issue Tracker.