使用 grunt_copy 重命名后删除原始文件

Remove Original file after rename with grunt_copy

我想在使用 grunt 复制选项重命名文件后删除原始文件。 文件改名成功,但原文件未删除。 在下面找到我的代码。

rename: {
        files: [
            {
                expand: true,
                flatten: true,
                cwd: '.tmp/public/min',
                src: ['production.*.*'],
                dest: '.tmp/public/min/',
                rename: function(dest, src) {
                return dest + src.replace('production','production.v'+timestamp);
            }
            }]
    },

这是我使用的模块,

grunt-contrib-copy

您可以使用 grunt-contrib-clean 删除文件。