Daniel Fischer
Daniel Fischer

Reputation: 3062

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

Upvotes: 5

Views: 474

Answers (1)

Kevin Moore
Kevin Moore

Reputation: 6161

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

Upvotes: 7

Related Questions