我的项目构建失败,因为它们依赖镜像和dart构建put告诉我使用--enable-experimental-mirrors
尝试在dart2js代码中使用镜像。所以,如果我运行pub build --enable-experimental-mirrors
,我得到的只是Could not find an option named "enable-experimental-mirrors"
。任何提示都非常赞赏。
答案 0 :(得分:5)
我自己还没试过,但也许你可以将它作为变换器配置中的命令行选项传递
transformers:
- $dart2js:
commandLineOptions: [--enable-experimental-mirrors]