Compile CoffeeScript on Save?(在保存时编译 CoffeeScript?)
问题描述
是否有在保存时轻松编译 CoffeeScript 的方法?我正在使用 TextMate 或 Sublime Text 2.
Is there anyway to easily compile CoffeeScript on save? I'm using TextMate or Sublime Text 2.
推荐答案
Coffeescript 具有观看"功能.您可以将其设置为半永久性流程:
Coffeescript has a 'watch' feature. You could set up, as a semi-permanent process:
coffee –wc -o media/js/ src/coffee/*.coffee
并且对于每个扩展名为.coffee"的文件,每次保存时都会将对应的编译后的.js"文件放入目标目录中.
And for every file with an extension ".coffee", the corresponding compiled ".js" file will be put into the target directory every time you save.
也就是说,我使用 makefile 和 fabfile,因为我的 HTML 是 HAML,我的 CSS 是 LessCSS,我的开发目录不是我的测试路径,所以我需要足够聪明的东西来构建和部署".
That said, I use a makefile and a fabfile, because my HTML is HAML, my CSS is LessCSS, and my development directory is not my test path, so I needed something smart enough to "build and deploy."
如果您的机器支持 inotify,您可以使用 inotifywait 来查看您的整个工作路径,并根据需要调用 Make.但到那时,你就陷入了顽固的极客中.
If your machine supports inotify, you could use inotifywait to watch your entire work path, and call Make as needed. But at that point, you're into hard-core geekery.
这篇关于在保存时编译 CoffeeScript?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在保存时编译 CoffeeScript?
基础教程推荐
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 动态更新多个选择框 2022-01-01
- 在for循环中使用setTimeout 2022-01-01