Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(161)

Side by Side Diff: packages/dart_to_js_script_rewriter/tool/dev.dart

Issue 2989763002: Update charted to 0.4.8 and roll (Closed)
Patch Set: Removed Cutch from list of reviewers Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « packages/dart_to_js_script_rewriter/smithy.yaml ('k') | packages/glob/.analysis_options » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 library dart_to_js_script_rewriter.tool.dev; 1 library dart_to_js_script_rewriter.tool.dev;
2 2
3 import 'package:dart_dev/dart_dev.dart' show dev, config; 3 import 'package:dart_dev/dart_dev.dart' show dev, config;
4 4
5 main(List<String> args) async { 5 main(List<String> args) async {
6 List<String> directories = ['example/', 'lib/', 'test/', 'tool/']; 6 List<String> directories = ['example/', 'lib/', 'test/', 'tool/'];
7 7
8 config.analyze.entryPoints = directories; 8 config.analyze.entryPoints = directories;
9 config.analyze.strong = true;
9 config.format.directories = directories; 10 config.format.directories = directories;
10 config.test 11 config.test
11 ..platforms = ['vm'] 12 ..platforms = ['vm']
12 ..pubServe = true 13 ..pubServe = true
13 ..unitTests = ['test/unit_test.dart'] 14 ..unitTests = ['test/unit_test.dart']
14 ..integrationTests = ['test/integration_test.dart']; 15 ..integrationTests = ['test/integration_test.dart'];
15 16
16 config.coverage.pubServe = true; 17 config.coverage.pubServe = true;
17 18
18 await dev(args); 19 await dev(args);
19 } 20 }
OLDNEW
« no previous file with comments | « packages/dart_to_js_script_rewriter/smithy.yaml ('k') | packages/glob/.analysis_options » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698