blob: bf99d9950a001593d326a3fae4e0d36253c25524 [file] [log] [blame]
#!/bin/sh
# This is handy when developing as the Gradle build can be very slow.
# Starts coffee in --watch mode, so it will keep compiling files on change.
# Expects coffee to be on the path.
# Should be executed from the tapestry-core folder.
# Does NOT compile the test scripts.
inputDir=src/main/coffeescript
outputDir=src/main/generated/compiled-coffeescript
coffee --watch --output $outputDir $inputDir