Coffee script compilation

前端 未结 11 2139
深忆病人
深忆病人 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:47

    find -type f | grep .coffee | xargs ls -t | head -n 1 | xargs coffee -cw
    

    find last modifed coffee script and put it in compile-watch mode

提交回复
热议问题