mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 00:25:46 -06:00
18 lines
300 B
JavaScript
18 lines
300 B
JavaScript
module.exports = function () {
|
|
'use strict';
|
|
return {
|
|
options: {
|
|
data: [],
|
|
flatten: true,
|
|
},
|
|
txt: {
|
|
options: {
|
|
layout: 'templates/partials/layout/default.txt',
|
|
ext: '.txt',
|
|
},
|
|
src: ['templates/*.txt'],
|
|
dest: 'dist/',
|
|
},
|
|
};
|
|
};
|