Guard 将 dir 的内容编译为 dirname

发布于 2024-10-16 13:49:17 字数 241 浏览 1 评论 0原文

我正在使用 Guard 在 Rails 2.3.8 应用程序中编译咖啡脚本。

我以前使用 bistro_car 捆绑包,所以我的脚本组织在 app/scripts/{bundle_name}/{bundle_files} 中,

我想做的是将所有 {bundle_files} 编译到 public/javascripts/{bundle_name}.js,所以我不'不必重新组织一切。

关于如何解决这个问题有什么想法吗?

I'm using guard to compile coffee-scripts in a Rails 2.3.8 app.

I was previously using bistro_car bundles, so my scripts are organized in app/scripts/{bundle_name}/{bundle_files}

What I would like to do is compile all {bundle_files} to public/javascripts/{bundle_name}.js so I don't have to re-organize everything.

Any ideas on how to approach this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓝颜夕 2024-10-23 13:49:17

我可以使用 coffee 命令得到的最接近的是

coffee -o public/javascripts/{bundle_name}/ --join \
  --compile app/scripts/{bundle_name}/*.coffee

Which will result in a JS file like app/scripts/{bundle_name}/concatenation.js.您可以编写一个非常简单的 Cakefile 来迭代所有包。

The closest I can get using just the coffee command is

coffee -o public/javascripts/{bundle_name}/ --join \
  --compile app/scripts/{bundle_name}/*.coffee

Which will result in a JS file like app/scripts/{bundle_name}/concatenation.js. You could write a pretty simple Cakefile to iterate over all your bundles.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文