This repository has been archived on 2023-12-22. You can view files and clone it, but cannot push or open issues or pull requests.
old-monorepo/Dashboard/tasks/assets.js

10 lines
201 B
JavaScript
Raw Normal View History

2020-07-30 20:59:37 +02:00
const { src, dest } = require('gulp');
function copyHtml() {
return src('app/renderer/index.html').pipe(dest('build/renderer'));
}
copyHtml.displayName = 'copy-html';
exports.copyHtml = copyHtml;