0
下面是一個給出的類,我只想替換特定的行。Grunt:替換行中的特定單詞
class abc{
Rest of code...
Titan.include('`MyFunction/myControl`.js');
Rest of code...
}
我想替換Titan.include
與myfunc
並從線中刪除 「的.js」:
myfunc('`MyFunction/myControl`');
我使用grunt.loadNpmTasks('grunt-string-replace');
任何幫助表示讚賞。
好的,那麼你有什麼嘗試?是否有任何錯誤?我們沒有看到問題所在。 – jakerella 2014-12-19 15:50:10
@jakerella我試過下面的東西。但它只能替換文件的第一行,其他行也是一樣的。 DIST:{ 文件:[{ 擴大:真實, CWD: '資源/', SRC: '**/* JS。', DEST: '資源/' }], 選項:{ 更換:[{ 圖案: 'Titan.include', 替換: 'MYFUNC' }] } } – Bhavin2887 2014-12-22 05:57:50