简单的咕噜复制任务不起作用

Simple grunt copy task not working

有人可以帮助我并告诉我我在这里做错了什么。我有以下 g运行t 任务,我想将 css 文件从构建目录移动到项目的根目录。

module.exports = {
    copy: {
        main: {
            files: [{
                expand: true,
                cwd: "build/css/",
                src: "style.css",
                dest: "../"
            }]
        },
    },
}

当我 运行 grunt copy -v 是这样说的:

$ grunt copy -v
Initializing
Command-line options: --verbose

Reading "Gruntfile.js" Gruntfile...OK

Running tasks: copy

Running "copy" task

Running "copy:copy" (copy) task
Verifying property copy.copy exists in config...OK
File: [no files]
Options: encoding="utf8", processContent=false, processContentExclude=[], timestamp=false, mode=false


Done, without errors.

别担心,解决了。太晚了... :(

任务 运行 从文件名中删除,因此删除 copy 现在它可以工作了。

module.exports = {
    main: {
        files: [{
            expand: true,
            cwd: "build/css/",
            src: "style.css",
            dest: "../"
        }]
    },
}