7
– Gruntfile.js
– app
|– index.php
|– js
|– css
|– templates
|– template.php
– dist
如何配置咕嚕usemin來更新我的模板相對於它使用模板的index.php文件,樣式和腳本的參考?
目前的任務是這樣的:
useminPrepare: {
html: '<%= yeoman.app %>/templates/template.php',
options: {
dest: '<%= yeoman.dist %>'
}
},
usemin: {
html: ['<%= yeoman.dist %>/{,*/}*.php'],
css: ['<%= yeoman.dist %>/css/*.css'],
options: {
dirs: ['<%= yeoman.dist %>']
}
}
和模板內的塊是這樣的:
<!-- build:js js/main.js -->
<script src="js/script1.js"></script>
<script src="js/script2.js"></script>
<!-- endbuild -->
可悲的是,它不與的template.php裏面實際的PHP代碼工作。 – gang