我正在尝试解决我的grunt任务的问题,在我的index.php中,我使用php include作为我的head标签:
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>yo</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<!-- build:css(.tmp) css/main.css -->
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/main.css">
<!-- endbuild -->
<script src="js/modernizr/modernizr-2.6.2.min.js"></script>
</head>
但是当我执行我的grunt任务时,usemin会抛出cssmin失败,
grunt.registerTask('default', [
'clean:dist',
/*'includes',*/
'useminPrepare',
'concurrent:dist',
'autoprefixer',
'concat',
'cssmin',
'uglify',
'copy:dist',
'rev',
'usemin',
'htmlmin'
]);
所以我认为当usemin解析index.php文件时,include尚未解析,如果我将head标签内容直接放在我的文件中,它可以工作......我尝试使用grunt-include,但是在我的开发模式下语法错误..请帮助^^
答案 0 :(得分:0)
使用grunt-curl作为您的第一个任务,从PHP页面检索呈现的HTML,存储在一个文件夹中,然后在渲染的HTML上运行所有grunt任务:) https://github.com/twolfson/grunt-curl