All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.nustaq.kontraktor.webapp.transpiler.CoffeeScriptTranspiler Maven / Gradle / Ivy

There is a newer version: 5.2.0
Show newest version
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