Skip to content

Commit e41c42e

Browse files
committed
using latest pkg/build
1 parent 964102e commit e41c42e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ environment:
77
sdk: '>=1.12.0 <2.0.0'
88
dependencies:
99
analyzer: '^0.27.3-alpha.1'
10-
build: ^0.2.0
10+
build: ^0.2.1
1111
cli_util: ^0.0.1
1212
dart_style: '>=0.1.7 <0.3.0'
1313
path: ^1.3.2

tool/build.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ import 'package:build/build.dart';
88
import 'phases.dart';
99

1010
main() async {
11-
build(phases);
11+
build(phases, deleteFilesByDefault: true);
1212
}

tool/travis.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ set -e
1010
pub run test
1111

1212
# Run the build.dart file - just to make sure it works
13-
echo y | dart --checked build.dart
13+
dart --checked build.dart
1414

1515
# Install dart_coveralls; gather and send coverage data.
1616
if [ "$COVERALLS_TOKEN" ] && [ "$TRAVIS_DART_VERSION" = "stable" ]; then

tool/watch.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ import 'package:build/build.dart';
88
import 'phases.dart';
99

1010
main() {
11-
watch(phases);
11+
watch(phases, deleteFilesByDefault: true);
1212
}

0 commit comments

Comments
 (0)