我认为唯一的解决方案是在构建脚本中手动创建编译顺序。您将创建一个带有文件名的有序集合,其中循环迭代并连接一个新的大字符串,可以将其编译为一个文件。
创建一个包含以下内容的 Cakefile,首先检查语法。并运行cake build
. 应该可以,CoffeeScript 自带 cake。
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 的 Wiki 中https://github.com/jashkenas/coffee-script/wiki/[HowTo]-Compiling-and-Setting-Up-Build-Tools
在第一次循环之前,您还可以让它遍历不同的目录。并且只列出 coffeeFiles 中要在其他未列出的文件之前处理的文件名,其余的可以使用 fs.readDir() 添加到列表中。