我使用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
,但我的替换不起作用并应用。
答案 0 :(得分:1)
很遗憾,我输入的路径不正确,如果源文件路径不正确,其他手grunt-text-replace
也不会显示消息。
我正确的源路径