Skip to content

Commit

Permalink
Include source maps in web release build (#339)
Browse files Browse the repository at this point in the history
  • Loading branch information
Airyzz authored Aug 13, 2024
1 parent 89e71d6 commit fc2670b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion commet/scripts/build_release.dart
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ main(List<String> args) async {
if (buildDetail != null) "--dart-define",
if (buildDetail != null) "BUILD_DETAIL=$buildDetail",
if (platform == "web") "--web-renderer",
if (platform == "web") "html"
if (platform == "web") "html",
if (platform == "web") "--source-maps"
],
runInShell: true,
);
Expand Down

0 comments on commit fc2670b

Please sign in to comment.