Kiran Kumar
Kiran Kumar

Reputation: 127

How to provide multiple dependencies in --chunk for closure compiler?

I have this requirement where i have test.js file dependent on x and y modules. So i was trying something like,

The below code generates x and y successfully but breaks on producing the test module.

How can i pass multiple dependencies? If we can't do this via chunk then how else can we do this?

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[*]}).

Thanks in advance for the help,

Kiran

Upvotes: 2

Views: 181

Answers (1)

matei7
matei7

Reputation: 11

I was struggling with this too -- it's a comma-separated list in quotes.

Using your example:

--chunk test:3:"x,y"

Can confirm this works in Powershell and bash.

Documentation on the --chunk flag

Upvotes: 0

Related Questions