Fix Travis config to run sound tests (#114) The `script` key is not valid under `dart_task:`, but was incorrectly copied from a `jobs:` configuration from another repository. Refactor to the `jobs` and `stages` style configuration.
A Dart CSS parser.
Parsing CSS is easy!
import 'package:csslib/parser.dart'; main() { var stylesheet = parse( '.foo { color: red; left: 20px; top: 20px; width: 100px; height:200px }'); print(stylesheet.toDebugString()); }
You can pass a String or List<int> to parse.