On a dart polymer project when I do a debug pub build like so:
pub build --mode debug
the build process does correctly produce unminified javascript with source maps for the dart code.
However, the generated html file still references the .dart bootstrap script.
I can always manually modify the html after the fact to use the .js file, but that's a pain.
How do I get pub build to automatically generate an html file that references the debug javascript?