2013-12-12 77 views
0

使用webapp生成器,我創建了一個yeoman項目。我在'templates'目錄下的app文件夾中有一些html模板。運行grunt構建時,我能夠獲得這些文件;但是,我無法更新到'腳本'目錄中js文件中對html模板的引用。是否有可能在js文件上使用usemin任務,或者首先修改js文件使用的html模板是一個壞主意?Yeoman,Grunt以及rev和usemin任務

大樓前: -root -app 的index.html -templates template1.html -scripts script1.js(使用template1.html)

建成後: -root 指數。 HTML -templates 43643.template1.html -scripts 345345.script1.js(不更新裁判template1.html)

我的gruntfile非常基本,只是將目錄添加到rev任務。任何建議,將不勝感激。提前致謝。

回答

0

您可以在以下問題上使用的模式,如:Using grunt-usemin with dynamically generated image paths

我用這個revisoned js文件搜索到其他js文件。

執行此操作時,記住,你必須寫在所有的相對路徑熊,在我的情況,我不得不改變這樣的:

... 
var file = basePath + 'filename.js'; 
... 

... 
var file = 'base/path/filename.js'; 
... 

乾杯,

相關問題