-1

我想将特定的咖啡脚本文件(未包含在<!-- build:js({.tmp, app}) -->我的部分中index.html)复制到例如dist/scripts目录。

我试过(Gruntfile.js):

    copy: {
        dist: {
            files: [
            // ...
            {
                expand: true,
                cwd: './tmp/scripts/polyfill',
                dest: '<%= yeoman.dist %>/scripts/polyfill',
                src: [
                    '*'
                ]
            }]
        }
    },
4

2 回答 2

1

如果您只想复制一个文件,则可以使用更简单的 grunt 语法:

copy: {
    dist: {
        files: [{
            '.tmp/scripts/polyfill/myfile.js': '<%= yeoman.dist %>/scripts/polyfill/myfile.js'
        }]
    }
}

临时文件夹的名称.tmp也不只是tmp.

于 2013-08-01T10:39:47.147 回答
-2

这有效:

{
    expand: true,
    cwd: '.tmp/scripts/polyfill',
    dest: '<%= yeoman.dist %>/scripts/polyfill',
    src: [
        'polyfill.js'
    ]
}

我的方法很好,但是它包含一个错字:./tmp- 它应该是.tmp.

于 2013-08-01T15:30:22.440 回答