You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
533 B
26 lines
533 B
module.exports = function () {
|
|
'use strict';
|
|
return {
|
|
options: {
|
|
partials: ['templates/partials/*.hbs'],
|
|
helpers: ['templates/helpers/**/*.js'],
|
|
data: [],
|
|
flatten: true,
|
|
},
|
|
html: {
|
|
options: {
|
|
layout: 'templates/layouts/default.html',
|
|
},
|
|
src: ['templates/*.html'],
|
|
dest: 'dist/',
|
|
},
|
|
txt: {
|
|
options: {
|
|
layout: 'templates/layouts/default.txt',
|
|
ext: '.txt',
|
|
},
|
|
src: ['templates/*.txt'],
|
|
dest: 'dist/',
|
|
},
|
|
};
|
|
};
|
|
|