相同 pubspec.yaml - 使用调试为 ddc 和 dart2js 构建
same pubspec.yaml - build for both ddc and dart2js with debug
在项目的当前状态下,我想使用调试信息为 ddc 和 dart2js 构建。这可能与相同的 pubspec.yaml
?
使用 ddc 的推荐设置,调试模式与 ddc 关联。
web:
compiler:
debug: dartdevc
虽然 dart2js
build 是在命令行中使用 --mode=release
获得的。
我现在找到的唯一方法是 un/comment 从 pubspec.yaml
的 ddc
部分。
您可以使用命令行标志代替 pubspec.yaml
设置
pub build --web-compiler=dartdevc
另见 https://webdev.dartlang.org/tools/dartdevc
缺点是,IntelliJ 目前不允许指定参数 pub serve
AFAIK。
在项目的当前状态下,我想使用调试信息为 ddc 和 dart2js 构建。这可能与相同的 pubspec.yaml
?
使用 ddc 的推荐设置,调试模式与 ddc 关联。
web:
compiler:
debug: dartdevc
虽然 dart2js
build 是在命令行中使用 --mode=release
获得的。
我现在找到的唯一方法是 un/comment 从 pubspec.yaml
的 ddc
部分。
您可以使用命令行标志代替 pubspec.yaml
设置
pub build --web-compiler=dartdevc
另见 https://webdev.dartlang.org/tools/dartdevc
缺点是,IntelliJ 目前不允许指定参数 pub serve
AFAIK。