mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 02:10:45 -06:00
18 lines
294 B
JavaScript
18 lines
294 B
JavaScript
module.exports = function () {
|
|
'use strict';
|
|
return {
|
|
txt: {
|
|
expand: true,
|
|
cwd: 'dist',
|
|
src: ['**.txt'],
|
|
dest: '../public/emails/',
|
|
},
|
|
html: {
|
|
expand: true,
|
|
cwd: 'dist',
|
|
src: ['**.html'],
|
|
dest: '../public/emails/',
|
|
},
|
|
};
|
|
};
|