如何在 Dart 2 中 运行 Pub.build()

How to run Pub.build() in Dart 2

在 Dart 1.x 中,有一个命令,您可以触发它,例如来自 grinder.dart。但是这条线不再有效:

Pub.build();

如何替换它并运行从 Dart 代码构建我的 Web 应用程序的命令?

pub build 在 Dart 2 中不再受支持。

您需要运行pub run build_runner build

https://webdev.dartlang.org/dart-2

不过,我不确定 Grinder 是否有新的 API。

我通过直接调用 webdev build 修复了它