我试图让Dart的pub build
在不缩小生成的JavaScript的情况下运行。根据{{3}},我应该能够像这样运行它:
pub build --mode=debug
...这将迫使pub build
使用no-minify选项。
然而,当我跑步时,我得到:
Could not find an option named "mode".
Run "pub help" to see available options.
正在运行Pub 1.0.0+10.r30798
- 任何想法?
答案 0 :(得分:3)
尝试运行pub build --no-minify
。
$ pub help build
Copy and compile all Dart entrypoints in the 'web' directory.
Usage: pub build [options]
-h, --help Print usage information for this command.
--[no-]minify Minify generated JavaScript.
(defaults to on)
答案 1 :(得分:1)