Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

webdev serve missing output for .js.map files

When running webdev serve and attempting to debug an error. I do not see any dart source code or .js.map files in order to debug it.

What could be wrong? This is a fresh angulardart project using the latest Dart 2, and webdev 0.2.4

like image 732
Daniel Fischer Avatar asked Aug 21 '18 08:08

Daniel Fischer


1 Answers

It's way too hard to do this now. I just opened an issue on it. In the meantime, try this in build.yaml:

global_options:
  build_web_compilers|dart_source_cleanup:
    release_options:
      enabled: false
  build_web_compilers|dart2js_archive_extractor:
    release_options:
      filter_outputs: false
like image 159
Kevin Moore Avatar answered Oct 05 '22 04:10

Kevin Moore