Skip to content

Instantly share code, notes, and snippets.

@frangarcia
Created June 22, 2015 15:59
Show Gist options
  • Save frangarcia/b4b877031cd945090d48 to your computer and use it in GitHub Desktop.
Save frangarcia/b4b877031cd945090d48 to your computer and use it in GitHub Desktop.
@Grapes(
@Grab(group='de.inetsoftware', module='jlessc', version='1.1')
)
import com.inet.lib.less.*
String lessContent = new File("example.less")?.text
Long time1 = new Date().time
String css = Less.compile( null, lessContent, true );
Long time2 = new Date().time
println css
println "Total time = ${time2 - time1} milliseconds"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment