我有一個app
文件夾,我想在的兩個文件中替換http://localhost:8000
:companies-list.component.ts
和events-list.component.ts
。我試圖使用grunt-replace-string
插件,它看起來成功運行,結果爲綠色Done
,沒有錯誤,但沒有發生替換。Grunt-string-replace不能正常工作
這裏是如何Gruntfile.js
樣子:
module.exports = function(grunt){
[
'grunt-string-replace',
].forEach(function(task){
grunt.loadNpmTasks(task);
});
// configure plugins
grunt.initConfig({
'string-replace': {
dist: {
files: {
'./app/': ['companies-list.component.ts','events-list.component.ts'],
},
options: {
replacements: [{
pattern: 'http://localhost:8000',
replacement: 'http://fomoapp-melbourne.rhcloud.com',
}]
}
}
},
});
// register tasks
grunt.registerTask('default', ['string-replace']);
};