Some updates

This commit is contained in:
Valentina 2021-12-02 11:29:35 +02:00
commit 1e43acf743
4 changed files with 9 additions and 9 deletions

View file

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