【发布时间】:2013-04-18 16:44:47
【问题描述】:
/assets/src/coffee 等(./child/paths 等)中有许多咖啡源文件,我想将它们输出到assets/js/ 和assets/js/child/paths。
看起来我已经接近了,但它不起作用。使用grunt-contrib-coffee 和grunt-contrib-watch。
grunt.initConfig
watch:
coffee:
files: '<%= coffee.src %>',
tasks: 'coffee:dev'
options:
nospawn: true
coffee:
src: 'assets/src/coffee/**/*.coffee'
dev:
options:
sourceMap: true
files: [
expand: true
cwd: "assets/"
src: "/src/coffee/**/*.coffee"
dest: "../js/"
ext: ".js"
]
grunt.loadNpmTasks "grunt-contrib-coffee"
grunt.loadNpmTasks 'grunt-contrib-watch'
# Default task.
grunt.registerTask "default", "watch"
grunt.event.on('watch', (action, filepath) ->
(grunt.log.writeln('\n'+ filepath + ' has ' + action))
dest = "#{path.dirname(filepath.replace("src/coffee", "js"))}"
grunt.config(['coffee', 'dev', 'files', 'src'], [filepath])
grunt.config(['coffee', 'dev', 'files', 'dest'], [dest])
(grunt.log.writeln("src: #{grunt.config(['coffee', 'dev', 'files', 'src'])}"))
(grunt.log.writeln("dest: #{grunt.config(['coffee', 'dev', 'files', 'dest'])}"))
)
好的,所以它的输出看起来像:
assets/src/coffee/projAlpha/dl.coffee has changed
src: assets/src/coffee/projAlpha/dl.coffee
dest: assets/js/projAlpha/dl.coffee
但文件实际上以:assets/src/coffee/projAlpha/dl.coffee... 结尾,而且是咖啡脚本。它应该在assets/js/projAlpha/dl.js。
我已经获得了 grunt coffee 实用程序来一次编译所有文件并将它们放在正确的位置。不过,我宁愿他们一次编译一个,因为我现在有几个文件并且一直在添加更多文件。
【问题讨论】:
标签: node.js coffeescript gruntjs