Coffee script compilation

前端 未结 11 2135
深忆病人
深忆病人 2020-12-13 05:19

I\'m looking for simplest possible way to automatically recompile coffee scripts into JS.

Reading documentation but still having troubles to get exactly what I want.

11条回答
  •  攒了一身酷
    2020-12-13 05:45

    Changed mind about concatenation.
    Created small compiler.sh file which contains:

    dnotify -M src/ -e coffee -o lib/ -c src/ &
    dnotify -M spec/ -e coffee -o lib/ -c spec/ &
    

    Kind a suits my needs.

提交回复
热议问题