Grunt JS:将参数传递给grunt-html-build

时间:2015-06-24 14:17:04

标签: javascript plugins gruntjs grunt-html-build

我正在使用grunt-html-build插件制作带模板的静态网站。 我想知道是否可以将自定义参数对象传递给grunt-html-build build 函数,如下所示:

    <!-- build:section layout.head(customSettings) -->
    <!-- /build -->

拥有模板文件,如下所示:

<title>customSettings.title</title>
<meta property="og:title" content="customSettings.fbTitle" />

1 个答案:

答案 0 :(得分:1)

使用grunt-bake插件,它有一个内联部分语句  允许传递自定义参数对象,样本配置将是

要通过myParam

添加其他内容的HTML文件
grunt-bake

<html> <body> <!--(bake includes/file.html _section="home")--> </body> </html> 文件

file.html

JSON文件,其中包含<h1>{{title}}</h1> <p>{{content}}</p> 属性

中提到的home对象的相关信息
_section

最后是{ "home": { "title": "Home", "content": "This is home" } } 任务的配置

grunt-bake