使用'tar'时grunt-contrib-compress失败

时间:2018-01-02 16:41:36

标签: javascript gruntjs grunt-contrib-compress

我正在尝试使用此配置使此压缩器输出 tgz 文件。这与“.zip”而不是“.tar.gz”作为文件扩展名并以“zip”作为模式完全正常。但是我无法使用tar / tgz格式。

module.exports = function (paramsConfig) {
'use strict';

return {
    'main': {
        'options': {
            'archive': 'filePath/fileName.tar.gz',
            'mode': 'tar',
            'level': 9
        },
        'files': [
            {
                'cwd': 'distributionDir/../',
                'expand': true,
                'src': ['**/*']
            }
        ]
    }
};

};

每当我尝试使用tar配置运行压缩器时,就会出现错误:

  

Fatal error: The "string" argument must be of type string. Received type number

这很奇怪,因为它会压缩所有文件,尽管以该错误结束。

0 个答案:

没有答案