oklai / koala

Koala is a GUI application for less, sass and coffeescript compilation, to help web developers to the development more efficient.
http://koala-app.com
Other
3.99k stars 522 forks source link

@koala-prepend only prepending first file reference #196

Open jsoucheray opened 10 years ago

jsoucheray commented 10 years ago

I have a simple js script with multiple files in the prepend statement like such:

// @koala-prepend "test.js", "test2.js";

What happens is the compiler properly fetches test.js, but then stops. This same syntax works in a @koala-append statement, so I am unsure as to what the issue is.

Any help is much appreciated.

zaygraveyard commented 10 years ago

Hi @jsoucheray, this syntax is not yet supported by Koala, but, thanks to your suggestion, I going to add it. For now you need to put each append/prepend on a separate line. e.g:

// @koala-prepend "test.js";
// @koala-prepend "test2.js";

Cheers

jsoucheray commented 10 years ago

Thanks for the quick response, I should have tried that.. duh...

On 3/25/2014 12:15:40 PM, Ziad Khoury Hanna notifications@github.comwrote: Hi @jsoucheray [https://github.com/jsoucheray], this syntax is not yet supported by Koala, but, thanks to your suggestion, I going to add it. For now you need to put each append/prepend on a separate line. e.g: // @koala-prepend "test.js"; // @koala-prepend "test2.js"; Cheers — Reply to this email directly or view it on GitHub [https://github.com/oklai/koala/issues/196#issuecomment-38593289].

renatolacerda commented 8 years ago

Did you guys make koala combine JS files?