grunt-text-replace不起作用

时间:2015-09-21 06:14:59

标签: replace gruntjs str-replace

我使用grunt-text-replace命令安装了npm install grunt-text-replace --save-dev并将grunt.loadNpmTasks('grunt-text-replace');添加到gruntfile.js并添加了以下内容:

replace: {
    example: {
        src: ['css/mystyle.css'],
        overwrite: true,      
        replacements: [{
            from: 'wizard',                   // string replacement 
            to: 'wizardstep'
        }]
    }
}

然后在命令行中运行grunt replace,之后显示done, without error,但我的替换不起作用并应用。

1 个答案:

答案 0 :(得分:1)

很遗憾,我输入的路径不正确,如果源文件路径不正确,其他手grunt-text-replace也不会显示消息。

  

我正确的源路径