org.nustaq.kontraktor.webapp.transpiler.CoffeeScriptTranspiler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kontraktor-http Show documentation
Show all versions of kontraktor-http Show documentation
http connectivity for kontraktor
package org.nustaq.kontraktor.webapp.transpiler;
import java.io.File;
/**
* Created by ruedi on 22.05.16.
*/
public class CoffeeScriptTranspiler extends CLICommandTranspiler {
public CoffeeScriptTranspiler() {
super(".coffee");
}
@Override
protected String[] createCMDLine(File targetJSFile, File source) {
return new String[] { "coffee","-c",source.getAbsolutePath()};
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy