UNPKG

441 BJavaScriptView Raw
1/*global module:false*/
2module.exports = function(grunt) {
3 "use strict";
4
5 grunt.loadTasks("../tasks");
6
7 grunt.initConfig({
8 dusthtml: {
9 home: {
10 src: "src/home.dust",
11 dest: "dist/home.html",
12 options: {
13 basePath: "src/",
14 whitespace: true,
15 context: {
16 title: "Home Page"
17 }
18 }
19 }
20 }
21 });
22
23 grunt.registerTask("default", ["dusthtml"]);
24};