🎉 Initial commit

This commit is contained in:
Jan Oberhauser 2019-10-03 08:53:03 +02:00
commit d3a225f94e
10 changed files with 537 additions and 0 deletions

8
gulpfile.js Normal file
View file

@ -0,0 +1,8 @@
const { src, dest } = require('gulp');
function copyIcons() {
return src('nodes/**/*.png')
.pipe(dest('dist/nodes'));
}
exports.default = copyIcons;