blob: 9130567e0bf5ab22c536d4434cfe34cc2b196966 [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.
# Doe NOT compile the test scripts.
inputDir=src/test/coffeescript
outputDir=build/generated-sources/compiled-test-coffeescript
coffee --watch --bare --output $outputDir $inputDir