如何在--chunk中为闭包编译器提供多个依赖关系?

时间:2019-05-07 06:56:19

标签: google-closure-compiler google-closure google-closure-library google-closure-templates

我有依赖于x和y模块的test.js文件的要求。所以我在尝试类似的东西,

下面的代码成功生成x和y,但在生成测试模块时中断。

如何传递多个依赖关系?如果我们不能通过块来做到这一点,那我们还能怎么做呢?

OPTS = (
"--js app1.js"
"--chunk app:1" 
"--js x1.js"
"--chunk x:1:app" 
"--js y1.js"
"--chunk y:1:app"
"--js test1.js"
"--chunk test:3:[x,y]"
)

java -jar comipler.jar $(echo ${OPTS[*]}).

预先感谢您的帮助,

基兰

0 个答案:

没有答案