Hi,
The last commit reads "Remove unused out folder from .gitignore" but running dart_analyzer still seems (with SDK 9821) to create an "out" directory (which then pollutes git status, etc).
Does one need to run dart_analyzer in a particular way to avoid "out" completely?
I tried...
My normal invocation (per the build.xml we're reviewing) is:
$DART_SDK/bin/dart_analyzer --enable_type_checks lib/box2d.dart
(builds out since confusing double-negative in --help implies incremental is default)
I tried explicitly disabling:
$DART_SDK/bin/dart_analyzer --noincremental --enable_type_checks lib/box2d.dart
(builds out despite --noincremental)
$DART_SDK/bin/dart_analyzer --work /tmp/dartTmp --noincremental --enable_type_checks lib/box2d.dart
(builds /tmp/dartTmp but not reliable approach)
Cheers, R.