gpt4 book ai didi

javascript - 更新 : USER ERROR - TYPO ! ! grunt-contrib-coffee 查找文件和写入目标时出错

转载 作者:行者123 更新时间:2023-11-30 17:43:53 25 4
gpt4 key购买 nike

在我的 Gruntfile.js 中,我将咖啡任务配置为如此,并且 src/ 目录中存在一个文件 script.coffee:

coffee: {
dist: {
files: [{
/* FIX: exapand: true, */
expand: true,
cwd: 'src/',
src: '**/*.coffee',
dest: 'lib/',
ext: '.js'
}]
}
}

运行 grunt coffee 时出现以下错误:

Running "coffee:dist" (coffee) task
>> Source file "script.coffee" not found.
>> Destination (lib/) not written because compiled files were empty.

script.coffee 的内容只是一些测试 coffeescript 配置的代码,当我从命令行运行 coffee -c script.coffee 时可以完美编译。

script.coffee 备案:

# A bubble sort implementation, sorting the given array in-place.
bubble_sort = (list) ->
for i in [0...list.length]
for j in [0...list.length - i] when list[j] > list[j + 1]
[list[j], list[j+1]] = [list[j + 1], list[j]]
list


# Test the function.
console.log bubble_sort([3, 2, 1]).join(' ') is '1 2 3'
console.log bubble_sort([9, 2, 7, 0, 1]).join(' ') is '0 1 2 7 9'

我在其他地方有其他项目使用相同的配置...我无法弄清楚问题...

有人有什么见解吗?

最佳答案

你在 files: [{ exapand: true ... }] 中有错字,应该是 expand: true

关于javascript - 更新 : USER ERROR - TYPO ! ! grunt-contrib-coffee 查找文件和写入目标时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20499905/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com