dart-sass/tool/grind.dart

40 lines
1.1 KiB
Dart
Raw Normal View History

2016-08-29 00:04:48 +02:00
// Copyright 2016 Google Inc. Use of this source code is governed by an
// MIT-style license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT.
import 'package:grinder/grinder.dart';
import 'grind/npm.dart';
import 'grind/synchronize.dart';
export 'grind/bazel.dart';
export 'grind/benchmark.dart';
export 'grind/chocolatey.dart';
export 'grind/github.dart';
export 'grind/homebrew.dart';
export 'grind/npm.dart';
export 'grind/sanity_check.dart';
export 'grind/standalone.dart';
export 'grind/synchronize.dart';
main(List<String> args) => grind(args);
2016-08-29 00:04:48 +02:00
@DefaultTask('Compile async code and reformat.')
@Depends(format, synchronize)
all() {}
@Task('Run the Dart formatter.')
2016-08-29 00:04:48 +02:00
format() {
Pub.run('dart_style',
script: 'format',
arguments: ['--overwrite', '--fix']
2016-08-29 00:04:48 +02:00
..addAll(existingSourceDirs.map((dir) => dir.path)));
}
2016-10-05 10:04:51 +02:00
@Task('Installs dependencies from npm.')
npmInstall() => run("npm", arguments: ["install"]);
@Task('Runs the tasks that are required for running tests.')
@Depends(format, synchronize, npmPackage, npmInstall)
beforeTest() {}