CoffeeScript - 子目录中的编译顺序

时间:2012-07-08 20:48:17

标签: coffeescript

有没有办法在子目录中定义CoffeeScript编译顺序? 请考虑以下示例:

文件:

  • 的src / App.coffee
  • 的src /视图/ B.coffee
  • 的src /视图/一个/ A.coffee

A类延伸B。

coffee --join js/app.js --compile src/view/ src/App.coffee

这会在浏览器中抛出错误:

Uncaught TypeError: Cannot read property 'prototype' of undefined 

如果我将文件夹 a 重命名为 z ,则错误消失,一切正常。

  • 的src /视图/的ž /A.coffee

我希望编译器在进入src / view /子目录之前从src / view /读取所有.coffee文件。再说一遍,有没有办法做到这一点?

修改 PC Windows 7, CoffeeScript版本1.3.3

2 个答案:

答案 0 :(得分:5)

我认为唯一的解决方案是在构建脚本中手动创建编译顺序。 您将创建一个带有文件名的有序集合,其中循环迭代并连接一个新的大字符串,该字符串可以编译为一个文件。

创建包含以下内容的Cakefile,首先检查语法。并使用cake build运行。这应该有效,蛋糕附带CoffeeScript。

fs = require 'fs'
{exec} = require 'child_process'

viewsDir = "src/view"
coffeeFiles = [
  'B'
  'A'
]

task 'build'
  # loops through coffeeFiles. 
  for file, index in coffeeFiles then do (file, index) ->
    fs.readFile "#{viewsDir}/#{file}", 'utf8', (err, content) ->
      appCoffee[index] = content
      compile() if --remaining is 0

  compile = ->
    fs.writeFile 'js/app.coffee', appCoffee.join('\n\n'), 'utf8', (err)   ->
      throw err if err
      exec 'coffee --compile js/app.coffee', (err, stdout, stderr) ->
        throw err if err
          console.log stdout + stderr

          # you can skip deleting the app.coffee file
          fs.unlink 'js/app.coffee', (err) ->
            throw err if err
            console.log 'Created app.coffe, compiled to app.js and removes app.coffee'

            # maybe additional taks 
            # invoke 'test'

在Coffeescript的维基中记录https://github.com/jashkenas/coffee-script/wiki/[HowTo]-Compiling-and-Setting-Up-Build-Tools

在第一次循环之前,您还可以使其循环遍历不同的目录。只需列出coffeeFiles中的文件名,然后在未列出的其他文件中进行处理,其余文件名可以使用fs.readDir()添加到列表中。

答案 1 :(得分:2)

我们创建了一个简单的模块来解决类似的问题:

https://github.com/Vizir/rehab

只需将#_require [filename].coffee放在您的文件上就可以了。

我们在具有复杂依赖图的作品中使用它。